Skip to content
Snippets Groups Projects
Commit 0f50b088 authored by jakubs's avatar jakubs
Browse files

bugfix: change the error message when evaluating boolean

SVN: 26423
parent 8b26602b
No related branches found
No related tags found
No related merge requests found
...@@ -366,7 +366,7 @@ public final class Evaluator ...@@ -366,7 +366,7 @@ public final class Evaluator
} catch (ClassCastException ex) } catch (ClassCastException ex)
{ {
final ReturnType type = getType(); final ReturnType type = getType();
throw new EvaluatorException("Expected a result of type " + ReturnType.INTEGER throw new EvaluatorException("Expected a result of type " + ReturnType.BOOLEAN
+ ", found " + type); + ", found " + type);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment