Skip to content

Commit

Permalink
完善条件ID构建
Browse files Browse the repository at this point in the history
  • Loading branch information
youseries committed Apr 28, 2018
1 parent ce433c9 commit b97a141
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ public class CommonFunctionValue extends AbstractValue{
@Override
public String getId() {
if(id==null){
id= "[函数]"+label+"("+parameter.getId()+")";
id= "[函数]"+label+"("+parameter.getId()+")";
if(arithmetic!=null){
id=id+arithmetic.getId();
}
}
return id;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ public String getId() {
id+=value.getId();
}
id+=")";
if(arithmetic!=null){
id=id+arithmetic.getId();
}
return id;
}
@Override
Expand Down

0 comments on commit b97a141

Please sign in to comment.