aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/libparser/node
diff options
context:
space:
mode:
authorRenaud Guezennec <renaud@rolisteam.org>2025-07-18 22:44:05 +0200
committerRenaud Guezennec <renaud@rolisteam.org>2025-07-18 22:44:05 +0200
commit85dffa46cceab43cf148aa42eb2de0099c4af15e (patch)
tree727b1c400d9c1d8d08b5011848a2a40de11b28ea /src/libparser/node
parente18f4a9936d03a112b1a05b24b0559e5be602e0e (diff)
downloadOneRoll-85dffa46cceab43cf148aa42eb2de0099c4af15e.tar.gz
OneRoll-85dffa46cceab43cf148aa42eb2de0099c4af15e.zip
Remove code
Diffstat (limited to 'src/libparser/node')
-rw-r--r--src/libparser/node/countexecutenode.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/libparser/node/countexecutenode.cpp b/src/libparser/node/countexecutenode.cpp
index 5a0c60b..a7e490a 100644
--- a/src/libparser/node/countexecutenode.cpp
+++ b/src/libparser/node/countexecutenode.cpp
@@ -35,11 +35,6 @@ void CountExecuteNode::run(ExecutionNode* previous)
std::function<void(Die*, qint64)> f= [&sum](const Die*, qint64 score) { sum+= score; };
m_validatorList->validResult(previousResult, true, true, f);
m_scalarResult->setValue(sum);
- // TODO nextNode to null?
- /*if(nullptr != m_nextNode)
- {
- m_nextNode->run(this);
- }*/
}
}
QString CountExecuteNode::toString(bool withlabel) const