mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
change error message (IDEA-153156)
This commit is contained in:
@@ -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
|
||||
|
||||
+1
-1
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user