File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
csharp/ToolGood.Algorithm2/Internals Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -213,7 +213,7 @@ public virtual Operand VisitJudge_fun(mathParser.Judge_funContext context)
213213 if ( a . IsError == false ) {
214214 if ( CharUtil . Equals ( type , "=" , "==" , "===" ) ) {
215215 return a . BooleanValue == args2 . BooleanValue ? Operand . True : Operand . False ;
216- } else if ( CharUtil . Equals ( type , "<>" , "!=" , "!=== " ) ) {
216+ } else if ( CharUtil . Equals ( type , "<>" , "!=" , "!==" ) ) {
217217 return a . BooleanValue != args2 . BooleanValue ? Operand . True : Operand . False ;
218218 }
219219 }
@@ -231,7 +231,7 @@ public virtual Operand VisitJudge_fun(mathParser.Judge_funContext context)
231231 if ( a . IsError == false ) {
232232 if ( CharUtil . Equals ( type , "=" , "==" , "===" ) ) {
233233 return a . BooleanValue == args1 . BooleanValue ? Operand . True : Operand . False ;
234- } else if ( CharUtil . Equals ( type , "<>" , "!=" , "!=== " ) ) {
234+ } else if ( CharUtil . Equals ( type , "<>" , "!=" , "!==" ) ) {
235235 return a . BooleanValue != args1 . BooleanValue ? Operand . True : Operand . False ;
236236 }
237237 }
You can’t perform that action at this time.
0 commit comments