mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[java-inspections] Message update (extends/implements list -> clause)
GitOrigin-RevId: 980a0f99b085f621a4928aea4e06362a237954f5
This commit is contained in:
committed by
intellij-monorepo-bot
parent
e1e5c0637f
commit
e3ce663932
@@ -280,7 +280,7 @@ inspection.nullable.problems.at.enum.constant=Nullability annotation is not appl
|
||||
inspection.nullable.problems.at.wildcard=Nullability annotation is not applicable to wildcard type
|
||||
inspection.nullable.problems.at.local.variable=Nullability annotation is not applicable to local variables
|
||||
inspection.nullable.problems.at.type.parameter=Nullability annotation is not applicable to type parameters
|
||||
inspection.nullable.problems.at.reference.list=Nullability annotation is not applicable to extends/implements lists
|
||||
inspection.nullable.problems.at.reference.list=Nullability annotation is not applicable to extends/implements clause
|
||||
inspection.objects.equals.can.be.simplified.display.name=Objects.equals() can be replaced with equals()
|
||||
inspection.redundant.cast.problem.descriptor=Casting {0} to {1} is redundant
|
||||
inspection.redundant.cast.remove.quickfix=Remove redundant cast(s)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import typeUse.*;
|
||||
|
||||
public class IncorrectPlacement extends <warning descr="Nullability annotation is not applicable to extends/implements lists">@Nullable</warning> Object
|
||||
implements <warning descr="Nullability annotation is not applicable to extends/implements lists">@Nullable</warning> Cloneable {
|
||||
public class IncorrectPlacement extends <warning descr="Nullability annotation is not applicable to extends/implements clause">@Nullable</warning> Object
|
||||
implements <warning descr="Nullability annotation is not applicable to extends/implements clause">@Nullable</warning> Cloneable {
|
||||
|
||||
<warning descr="Nullability annotation is not applicable to constructors">@Nullable</warning> IncorrectPlacement() {}
|
||||
|
||||
|
||||
+2
-2
@@ -1,7 +1,7 @@
|
||||
import typeUse.*;
|
||||
|
||||
public class IncorrectPlacementAmbiguous extends <warning descr="Nullability annotation is not applicable to extends/implements lists">@Nullable</warning> Object
|
||||
implements <warning descr="Nullability annotation is not applicable to extends/implements lists">@Nullable</warning> Cloneable {
|
||||
public class IncorrectPlacementAmbiguous extends <warning descr="Nullability annotation is not applicable to extends/implements clause">@Nullable</warning> Object
|
||||
implements <warning descr="Nullability annotation is not applicable to extends/implements clause">@Nullable</warning> Cloneable {
|
||||
|
||||
<warning descr="Nullability annotation is not applicable to constructors">@Nullable</warning> IncorrectPlacementAmbiguous() {}
|
||||
|
||||
|
||||
+2
-2
@@ -1,7 +1,7 @@
|
||||
import typeUse.*;
|
||||
|
||||
public class IncorrectPlacementAmbiguousJava6 extends <error descr="Type annotations are not supported at language level '6'"><warning descr="Nullability annotation is not applicable to extends/implements lists">@Nullable</warning></error> Object
|
||||
implements <error descr="Type annotations are not supported at language level '6'"><warning descr="Nullability annotation is not applicable to extends/implements lists">@Nullable</warning></error> Cloneable {
|
||||
public class IncorrectPlacementAmbiguousJava6 extends <error descr="Type annotations are not supported at language level '6'"><warning descr="Nullability annotation is not applicable to extends/implements clause">@Nullable</warning></error> Object
|
||||
implements <error descr="Type annotations are not supported at language level '6'"><warning descr="Nullability annotation is not applicable to extends/implements clause">@Nullable</warning></error> Cloneable {
|
||||
|
||||
<warning descr="Nullability annotation is not applicable to constructors">@Nullable</warning> IncorrectPlacementAmbiguousJava6() {}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user