[FIR] KT-53479: Paraphrase INSTANCE_ACCESS_BEFORE_SUPER_CALL

This commit is contained in:
Nikolay Lunyak
2022-09-07 13:56:49 +03:00
committed by Space
parent 367761008b
commit dccb7faf2e
5 changed files with 8 additions and 8 deletions
@@ -698,7 +698,7 @@ public class DefaultErrorMessages {
MAP.put(EXPLICIT_DELEGATION_CALL_REQUIRED,
"Explicit 'this' or 'super' call is required. There is no constructor in superclass that can be called without arguments");
MAP.put(INSTANCE_ACCESS_BEFORE_SUPER_CALL, "Cannot access ''{0}'' before superclass constructor has been called", NAME);
MAP.put(INSTANCE_ACCESS_BEFORE_SUPER_CALL, "Cannot access ''{0}'' before the instance has been initialized", NAME);
MAP.put(ILLEGAL_SELECTOR, "The expression cannot be a selector (occur after a dot)");