change error message (IDEA-153156)

This commit is contained in:
Anna.Kozlova
2016-03-22 19:37:27 +01:00
parent 5aa3e5650f
commit d935cfd941
2 changed files with 2 additions and 2 deletions
@@ -123,7 +123,7 @@ public.class.should.be.named.after.file=Class ''{0}'' is public, should be decla
inheritance.from.final.class=Cannot inherit from final ''{0}''
package.name.file.path.mismatch=Package name ''{0}'' does not correspond to the file path ''{1}''
missing.package.statement=Missing package statement: ''{0}''
interface.cannot.be.local=Modifier 'interface' not allowed here
interface.cannot.be.local=Interface not allowed here
cyclic.inheritance=Cyclic inheritance involving ''{0}''
class.already.imported=''{0}'' is already defined in this compilation unit
class.cannot.extend.multiple.classes=Class cannot extend multiple classes
@@ -89,7 +89,7 @@ public class a {
// local interface
class cc {
void f() {
<error descr="Modifier 'interface' not allowed here">interface i</error> {}
<error descr="Interface not allowed here">interface i</error> {}
}
void ff() {
class inn {