diff --git a/idea/src/org/jetbrains/jet/plugin/highlighter/IdeErrorMessages.java b/idea/src/org/jetbrains/jet/plugin/highlighter/IdeErrorMessages.java index f7507daff65..93a79b93e4d 100644 --- a/idea/src/org/jetbrains/jet/plugin/highlighter/IdeErrorMessages.java +++ b/idea/src/org/jetbrains/jet/plugin/highlighter/IdeErrorMessages.java @@ -37,12 +37,19 @@ public class IdeErrorMessages { MAP.put(TYPE_MISMATCH, "Type mismatch.
Required:{0}
Found:{1}
", RENDER_TYPE, RENDER_TYPE); MAP.put(WRONG_SETTER_PARAMETER_TYPE, "Setter parameter type must be equal to the type of the property." + - "
Expected:{0}
Found:{1}
", RENDER_TYPE, RENDER_TYPE); + "" + + "
Expected:{0}
Found:{1}
", RENDER_TYPE, RENDER_TYPE); MAP.put(WRONG_GETTER_RETURN_TYPE, "Getter return type must be equal to the type of the property." + - "
Expected:{0}
Found:{1}
", RENDER_TYPE, RENDER_TYPE); + "" + + "
Expected:{0}
Found:{1}
", RENDER_TYPE, RENDER_TYPE); MAP.put(UPPER_BOUND_VIOLATED, "Type argument is not within its bounds." + - "
Expected:{0}
Found:{1}
", RENDER_TYPE, RENDER_TYPE); + "" + + "
Expected:{0}
Found:{1}
", RENDER_TYPE, RENDER_TYPE); + + MAP.put(TYPE_MISMATCH_IN_FOR_LOOP, "Loop parameter type mismatch." + + "" + + "
Iterated values:{0}
Parameter:{1}
", RENDER_TYPE, RENDER_TYPE); MAP.setImmutable(); }