Skip to content

Commit

Permalink
Revert debugging code
Browse files Browse the repository at this point in the history
  • Loading branch information
Drodt committed Feb 21, 2024
1 parent c351004 commit d86d57a
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions key.core/src/main/java/de/uka/ilkd/key/logic/TermImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -703,13 +703,9 @@ public boolean containsJavaBlockRecursive() {
result = ThreeValuedTruth.TRUE;
} else {
for (int i = 0, arity = subs.size(); i < arity; i++) {
try {
if (subs.get(i).containsJavaBlockRecursive()) {
result = ThreeValuedTruth.TRUE;
break;
}
} catch (NullPointerException e) {
e.printStackTrace();
if (subs.get(i).containsJavaBlockRecursive()) {
result = ThreeValuedTruth.TRUE;
break;
}
}
}
Expand Down

0 comments on commit d86d57a

Please sign in to comment.