[java-inspections] Message update (extends/implements list -> clause)

GitOrigin-RevId: 980a0f99b085f621a4928aea4e06362a237954f5
This commit is contained in:
Tagir Valeev
2021-03-19 07:48:21 +00:00
committed by intellij-monorepo-bot
parent e1e5c0637f
commit e3ce663932
4 changed files with 7 additions and 7 deletions
@@ -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() {}
@@ -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() {}
@@ -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() {}