Skip to content

Commit

Permalink
delete
Browse files Browse the repository at this point in the history
  • Loading branch information
magiclu550 committed Mar 15, 2020
1 parent 53553db commit 8fed3e8
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/main/java/cn/wenyan/compiler/utils/NumberTree.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ class NumberTree {
for(int i = 0;i<nodes.size();i+=2){
result += GroovyUtils.getNumber(nodes[i].value) * GroovyUtils.getNumber(i+1<nodes.size()?nodes[i+1].value:"")
}
println(result)
(result + floatValue)*prefix
}

Expand All @@ -85,8 +84,4 @@ class Node{
String toString() {
return value
}

boolean isEmpty(){
return value.empty
}
}

0 comments on commit 8fed3e8

Please sign in to comment.