1
0
mirror of https://github.com/DanilaFe/abacus synced 2026-01-27 17:15:21 +00:00

Plugin fixes

This commit is contained in:
Riley Jones
2017-08-03 15:16:26 -07:00
parent dad546c5b5
commit 9d5f9d901c
5 changed files with 45 additions and 14 deletions

View File

@@ -37,8 +37,6 @@ public class UnaryNode extends TreeNode {
return null;
Object reducedChild = applyTo.reduce(reducer);
if (reducedChild == null) return null;
if(Thread.currentThread().isInterrupted())
return null;
T a = reducer.reduceNode(this, reducedChild);
if(Thread.currentThread().isInterrupted())
return null;