Skip to content

Commit

Permalink
Fix call to isTaggedWithIgnoringEagerness
Browse files Browse the repository at this point in the history
Was wrongly calling isTaggedWith, which also happend to lead to endless recursion.

Signed-off-by: Stefan Marr <git@stefan-marr.de>
  • Loading branch information
smarr committed Nov 25, 2016
1 parent d2b2e23 commit 28c23b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/som/interpreter/actors/ReceivedRootNode.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ protected boolean isTaggedWithIgnoringEagerness(final Class<?> tag) {
if (tag == StatementTag.class) {
return isMarkedAsRootExpression();
}
return super.isTaggedWith(tag);
return super.isTaggedWithIgnoringEagerness(tag);
}
}
}

0 comments on commit 28c23b4

Please sign in to comment.