-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3764 from Rawi01/update-index
Update annotation value index
- Loading branch information
Showing
40 changed files
with
102 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
test/transform/resource/before/EqualsAndHashCodeOfAndExcludeError.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// skip-compare-contents | ||
@lombok.EqualsAndHashCode(of={"x", Const.A}) | ||
final class EqualsAndHashCodeErrorOf { | ||
int x; | ||
} | ||
|
||
@lombok.EqualsAndHashCode(exclude={"x", Const.A}) | ||
final class EqualsAndHashCodeErrorExclude { | ||
int x; | ||
} | ||
|
||
class Const { | ||
static final String A = "A"; | ||
} |
2 changes: 1 addition & 1 deletion
2
test/transform/resource/messages-delombok/DelegateFlagUsage.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
4 Use of @Delegate is flagged according to lombok configuration. | ||
5 Use of @Delegate is flagged according to lombok configuration. |
4 changes: 2 additions & 2 deletions
4
test/transform/resource/messages-delombok/DelegateOnStatic.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
6 @Delegate is legal only on instance fields or no-argument instance methods. | ||
10 @Delegate is legal only on instance fields or no-argument instance methods. | ||
7 @Delegate is legal only on instance fields or no-argument instance methods. | ||
11 @Delegate is legal only on instance fields or no-argument instance methods. |
2 changes: 1 addition & 1 deletion
2
test/transform/resource/messages-delombok/DelegateRecursion.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
4 @Delegate does not support recursion (delegating to a type that itself has @Delegate members). Member "inner" is @Delegate in type "DelegateRecursionCenter" | ||
5 @Delegate does not support recursion (delegating to a type that itself has @Delegate members). Member "inner" is @Delegate in type "DelegateRecursionCenter" |
2 changes: 2 additions & 0 deletions
2
test/transform/resource/messages-delombok/EqualsAndHashCodeOfAndExcludeError.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
2:60 You must use constant literals in lombok annotations; they cannot be references to (static) fields. | ||
7:160 You must use constant literals in lombok annotations; they cannot be references to (static) fields. |
4 changes: 2 additions & 2 deletions
4
test/transform/resource/messages-delombok/EqualsAndHashCodeOfAndExcludeWarn.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
1 This field does not exist. | ||
6 This field does not exist, or would have been excluded anyway. | ||
2 This field does not exist. | ||
7 This field does not exist, or would have been excluded anyway. |
2 changes: 1 addition & 1 deletion
2
test/transform/resource/messages-delombok/ExtensionMethodAmbiguousFunctional.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
9 reference to ambiguous is ambiguous both method <T,R>ambiguous(T,java.util.function.Function<T,R>) in ExtensionMethodAmbiguousFunctional.Extensions and method <T>ambiguous(T,java.util.function.Consumer<T>) in ExtensionMethodAmbiguousFunctional.Extensions match | ||
10 reference to ambiguous is ambiguous both method <T,R>ambiguous(T,java.util.function.Function<T,R>) in ExtensionMethodAmbiguousFunctional.Extensions and method <T>ambiguous(T,java.util.function.Consumer<T>) in ExtensionMethodAmbiguousFunctional.Extensions match |
2 changes: 1 addition & 1 deletion
2
...sform/resource/messages-delombok/JacksonizedSuperBuilderWithJsonDeserialize.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1 @JsonDeserialize already exists on class. Either delete @JsonDeserialize, or remove @Jacksonized and manually configure Jackson. | ||
2 @JsonDeserialize already exists on class. Either delete @JsonDeserialize, or remove @Jacksonized and manually configure Jackson. |
2 changes: 1 addition & 1 deletion
2
test/transform/resource/messages-delombok/LockedInRecord.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
5 @Locked is legal only on methods in classes and enums. | ||
6 @Locked is legal only on methods in classes and enums. |
2 changes: 1 addition & 1 deletion
2
test/transform/resource/messages-delombok/NonNullOnParameter.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
22 @NonNull is meaningless on a primitive. | ||
23 @NonNull is meaningless on a primitive. |
12 changes: 6 additions & 6 deletions
12
test/transform/resource/messages-delombok/OnXFlagUsage.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
9 Use of @Getter(onMethod=...) is flagged according to lombok configuration. | ||
10 Use of @Setter(onMethod=...) is flagged according to lombok configuration. | ||
10 Use of @Setter(onParam=...) is flagged according to lombok configuration. | ||
11 Use of @NoArgsConstructor(onConstructor=...) is flagged according to lombok configuration. | ||
12 Use of @AllArgsConstructor(onConstructor=...) is flagged according to lombok configuration. | ||
18 Use of @RequiredArgsConstructor(onConstructor=...) is flagged according to lombok configuration. | ||
10 Use of @Getter(onMethod=...) is flagged according to lombok configuration. | ||
11 Use of @Setter(onMethod=...) is flagged according to lombok configuration. | ||
11 Use of @Setter(onParam=...) is flagged according to lombok configuration. | ||
12 Use of @NoArgsConstructor(onConstructor=...) is flagged according to lombok configuration. | ||
13 Use of @AllArgsConstructor(onConstructor=...) is flagged according to lombok configuration. | ||
19 Use of @RequiredArgsConstructor(onConstructor=...) is flagged according to lombok configuration. |
2 changes: 1 addition & 1 deletion
2
test/transform/resource/messages-delombok/SynchronizedInRecord.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
5 @Synchronized is legal only on methods in classes and enums. | ||
6 @Synchronized is legal only on methods in classes and enums. |
4 changes: 2 additions & 2 deletions
4
test/transform/resource/messages-delombok/ValErrors.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
6 Cannot use 'val' here because initializer expression does not have a representable type: Type cannot be resolved | ||
10 'val' is not compatible with array initializer expressions. Use the full form (new int[] { ... } instead of just { ... }) | ||
7 Cannot use 'val' here because initializer expression does not have a representable type: Type cannot be resolved | ||
11 'val' is not compatible with array initializer expressions. Use the full form (new int[] { ... } instead of just { ... }) |
2 changes: 1 addition & 1 deletion
2
test/transform/resource/messages-delombok/ValInBasicFor.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
7 'val' is not allowed in old-style for loops | ||
8 'val' is not allowed in old-style for loops |
2 changes: 1 addition & 1 deletion
2
test/transform/resource/messages-delombok/VarInForOldMulti.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
6 'var' is not allowed in old-style for loops if there is more than 1 initializer | ||
7 'var' is not allowed in old-style for loops if there is more than 1 initializer |
2 changes: 1 addition & 1 deletion
2
test/transform/resource/messages-delombok/VarNullInit.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
5 variable initializer is 'null' | ||
6 variable initializer is 'null' |
2 changes: 1 addition & 1 deletion
2
test/transform/resource/messages-delombok/VarWarning.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
6 Use of var is flagged according to lombok configuration | ||
7 Use of var is flagged according to lombok configuration. |
2 changes: 1 addition & 1 deletion
2
test/transform/resource/messages-ecj/DelegateFlagUsage.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
4 Use of @Delegate is flagged according to lombok configuration. | ||
5 Use of @Delegate is flagged according to lombok configuration. |
4 changes: 2 additions & 2 deletions
4
test/transform/resource/messages-ecj/DelegateOnGetter.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
1 The type Delegate is deprecated | ||
6 The type Delegate is deprecated | ||
2 The type Delegate is deprecated | ||
7 The type Delegate is deprecated |
4 changes: 2 additions & 2 deletions
4
test/transform/resource/messages-ecj/DelegateOnStatic.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
6 @Delegate is legal only on instance fields or no-argument instance methods. | ||
10 @Delegate is legal only on instance fields or no-argument instance methods. | ||
7 @Delegate is legal only on instance fields or no-argument instance methods. | ||
11 @Delegate is legal only on instance fields or no-argument instance methods. |
2 changes: 1 addition & 1 deletion
2
test/transform/resource/messages-ecj/DelegateRecursion.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
4 @Delegate does not support recursion (delegating to a type that itself has @Delegate members). Member "inner" is @Delegate in type "DelegateRecursionCenter" | ||
5 @Delegate does not support recursion (delegating to a type that itself has @Delegate members). Member "inner" is @Delegate in type "DelegateRecursionCenter" |
2 changes: 2 additions & 0 deletions
2
test/transform/resource/messages-ecj/EqualsAndHashCodeOfAndExcludeError.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
2:60 You must use constant literals in lombok annotations; they cannot be references to (static) fields. | ||
7:160 You must use constant literals in lombok annotations; they cannot be references to (static) fields. |
4 changes: 2 additions & 2 deletions
4
test/transform/resource/messages-ecj/EqualsAndHashCodeOfAndExcludeWarn.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
1 This field does not exist. | ||
6 This field does not exist, or would have been excluded anyway. | ||
2 This field does not exist. | ||
7 This field does not exist, or would have been excluded anyway. |
2 changes: 1 addition & 1 deletion
2
.../transform/resource/messages-ecj/JacksonizedSuperBuilderWithJsonDeserialize.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1 @JsonDeserialize already exists on class. Either delete @JsonDeserialize, or remove @Jacksonized and manually configure Jackson. | ||
2 @JsonDeserialize already exists on class. Either delete @JsonDeserialize, or remove @Jacksonized and manually configure Jackson. |
6 changes: 3 additions & 3 deletions
6
test/transform/resource/messages-ecj/NonNullOnParameter.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
15 Dead code | ||
22 @NonNull is meaningless on a primitive. | ||
28 Dead code | ||
16 Dead code | ||
23 @NonNull is meaningless on a primitive. | ||
29 Dead code |
2 changes: 1 addition & 1 deletion
2
test/transform/resource/messages-ecj/NonNullPlain.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
7 @NonNull is meaningless on a primitive. | ||
8 @NonNull is meaningless on a primitive. |
12 changes: 6 additions & 6 deletions
12
test/transform/resource/messages-ecj/OnXFlagUsage.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
9 Use of @Getter(onMethod=...) is flagged according to lombok configuration. | ||
10 Use of @Setter(onMethod=...) is flagged according to lombok configuration. | ||
10 Use of @Setter(onParam=...) is flagged according to lombok configuration. | ||
11 Use of @NoArgsConstructor(onConstructor=...) is flagged according to lombok configuration. | ||
12 Use of @AllArgsConstructor(onConstructor=...) is flagged according to lombok configuration. | ||
18 Use of @RequiredArgsConstructor(onConstructor=...) is flagged according to lombok configuration. | ||
10 Use of @Getter(onMethod=...) is flagged according to lombok configuration. | ||
11 Use of @Setter(onMethod=...) is flagged according to lombok configuration. | ||
11 Use of @Setter(onParam=...) is flagged according to lombok configuration. | ||
12 Use of @NoArgsConstructor(onConstructor=...) is flagged according to lombok configuration. | ||
13 Use of @AllArgsConstructor(onConstructor=...) is flagged according to lombok configuration. | ||
19 Use of @RequiredArgsConstructor(onConstructor=...) is flagged according to lombok configuration. |
2 changes: 1 addition & 1 deletion
2
test/transform/resource/messages-ecj/ValAnonymousSubclassWithGenerics.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
17 The serializable class does not declare a static final serialVersionUID field of type long | ||
18 The serializable class does not declare a static final serialVersionUID field of type long |
16 changes: 8 additions & 8 deletions
16
test/transform/resource/messages-ecj/ValInvalidParameter.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
5 NonExistingClass cannot be resolved to a type | ||
6 NonExistingClass cannot be resolved to a type | ||
7 The method nonExisitingMethod(Integer) is undefined for the type ValInvalidParameter | ||
8 nonExistingObject cannot be resolved | ||
9 The method nonExistingMethod() is undefined for the type Integer | ||
10 NonExistingClass cannot be resolved to a type | ||
11 The method b2(int, int) in the type ValInvalidParameter is not applicable for the arguments (int) | ||
12 The method a(String) is ambiguous for the type ValInvalidParameter | ||
13 The method a(String) is ambiguous for the type ValInvalidParameter | ||
7 NonExistingClass cannot be resolved to a type | ||
8 The method nonExisitingMethod(Integer) is undefined for the type ValInvalidParameter | ||
9 nonExistingObject cannot be resolved | ||
10 The method nonExistingMethod() is undefined for the type Integer | ||
11 NonExistingClass cannot be resolved to a type | ||
12 The method b2(int, int) in the type ValInvalidParameter is not applicable for the arguments (int) | ||
13 The method a(String) is ambiguous for the type ValInvalidParameter | ||
14 The method a(String) is ambiguous for the type ValInvalidParameter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
24 Function is a raw type. References to generic type Function<T,R> should be parameterized | ||
25 Function is a raw type. References to generic type Function<T,R> should be parameterized | ||
25 Function is a raw type. References to generic type Function<T,R> should be parameterized | ||
26 Function is a raw type. References to generic type Function<T,R> should be parameterized |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
13 List is a raw type. References to generic type List<E> should be parameterized | ||
14 List is a raw type. References to generic type List<E> should be parameterized |
2 changes: 1 addition & 1 deletion
2
test/transform/resource/messages-ecj/VarInForOldMulti.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
6 'var' is not allowed in old-style for loops if there is more than 1 initializer | ||
7 'var' is not allowed in old-style for loops if there is more than 1 initializer |
4 changes: 2 additions & 2 deletions
4
test/transform/resource/messages-ecj/VarModifier.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
1 The type var is deprecated | ||
7 The type var is deprecated | ||
2 The type var is deprecated | ||
8 The type var is deprecated | ||
9 The type var is deprecated |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
5 variable initializer is 'null' | ||
6 variable initializer is 'null' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
6 Use of var is flagged according to lombok configuration. | ||
7 Use of var is flagged according to lombok configuration. |
4 changes: 2 additions & 2 deletions
4
test/transform/resource/messages-idempotent/LockedTypeMismatch.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
27 cannot find symbol | ||
31 cannot find symbol | ||
28 cannot find symbol method readLock() location: java.util.concurrent.locks.Lock | ||
32 cannot find symbol method readLock() location: java.util.concurrent.locks.Lock |
2 changes: 1 addition & 1 deletion
2
test/transform/resource/messages-idempotent/NonNullOnParameter.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
33 @NonNull is meaningless on a primitive. | ||
34 @NonNull is meaningless on a primitive. |
18 changes: 9 additions & 9 deletions
18
test/transform/resource/messages-idempotent/ValInvalidParameter.java.messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
3 cannot find symbol | ||
4 cannot find symbol | ||
5 cannot find symbol | ||
6 cannot find symbol | ||
7 cannot find symbol | ||
8 cannot find symbol | ||
9 method b2 in class ValInvalidParameter cannot be applied to given types; | ||
10 reference to a is ambiguous | ||
11 reference to a is ambiguous | ||
4 cannot find symbol symbol: class NonExistingClass location: class ValInvalidParameter | ||
5 cannot find symbol symbol: class NonExistingClass location: class ValInvalidParameter | ||
6 cannot find symbol symbol: method nonExisitingMethod(java.lang.Integer) location: class ValInvalidParameter | ||
7 cannot find symbol symbol: variable nonExistingObject location: class ValInvalidParameter | ||
8 cannot find symbol symbol: method nonExistingMethod() location: class java.lang.Integer | ||
9 cannot find symbol symbol: class NonExistingClass location: class ValInvalidParameter | ||
10 method b2 in class ValInvalidParameter cannot be applied to given types; required: int,int found: int reason: actual and formal argument lists differ in length | ||
11 reference to a is ambiguous both method a(java.lang.String) in ValInvalidParameter and method a(java.lang.Integer) in ValInvalidParameter match | ||
12 reference to a is ambiguous both method a(java.lang.String) in ValInvalidParameter and method a(java.lang.Integer) in ValInvalidParameter match |