diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2013-08-12 22:51:13 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2013-08-12 23:13:11 +0200 |
commit | 95cf815285ee736d3bc8119773139cb4fe0c1fb4 (patch) | |
tree | bf06026c5e29da9886b932aaebb9e6f4735d8d1f /test/transform/resource/messages-delombok | |
parent | df69425550d55da3de07f922fced3872432cd9d3 (diff) | |
download | lombok-95cf815285ee736d3bc8119773139cb4fe0c1fb4.tar.gz lombok-95cf815285ee736d3bc8119773139cb4fe0c1fb4.tar.bz2 lombok-95cf815285ee736d3bc8119773139cb4fe0c1fb4.zip |
replaced double underscore as new standard way of writing the dummy annotation for onX instead of single underscore, which emits warnings on javac8+.
Also made dollars and Xes legal in addition to underscores, in case double underscore disappears later too.
Diffstat (limited to 'test/transform/resource/messages-delombok')
-rw-r--r-- | test/transform/resource/messages-delombok/GetterOnMethodErrors2.java.messages | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/transform/resource/messages-delombok/GetterOnMethodErrors2.java.messages b/test/transform/resource/messages-delombok/GetterOnMethodErrors2.java.messages index ead040a5..b5bad45b 100644 --- a/test/transform/resource/messages-delombok/GetterOnMethodErrors2.java.messages +++ b/test/transform/resource/messages-delombok/GetterOnMethodErrors2.java.messages @@ -1,4 +1,4 @@ -2:9 The correct format is @Getter(onMethod=@_({@SomeAnnotation, @SomeOtherAnnotation})) -3:9 The correct format is @Getter(onMethod=@_({@SomeAnnotation, @SomeOtherAnnotation})) -4:9 The correct format is @Getter(onMethod=@_({@SomeAnnotation, @SomeOtherAnnotation})) -5:9 The correct format is @Getter(onMethod=@_({@SomeAnnotation, @SomeOtherAnnotation})) +2:9 The correct format is @Getter(onMethod=@__({@SomeAnnotation, @SomeOtherAnnotation})) +3:9 The correct format is @Getter(onMethod=@__({@SomeAnnotation, @SomeOtherAnnotation})) +4:9 The correct format is @Getter(onMethod=@__({@SomeAnnotation, @SomeOtherAnnotation})) +5:9 The correct format is @Getter(onMethod=@__({@SomeAnnotation, @SomeOtherAnnotation})) |