aboutsummaryrefslogtreecommitdiff
path: root/test/delombok/resource/after/SetterPlain.java
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2010-07-20 01:35:40 +0200
committerRoel Spilker <r.spilker@gmail.com>2010-07-20 01:35:40 +0200
commit0d7df01a0711604ce3da57e11815d376c7071870 (patch)
tree8b0bc84bf45ac725a86697b4a916e60027bcf626 /test/delombok/resource/after/SetterPlain.java
parent9b886c140cf3cbc22c8db0ec8e37b95b45d7b4d9 (diff)
downloadlombok-0d7df01a0711604ce3da57e11815d376c7071870.tar.gz
lombok-0d7df01a0711604ce3da57e11815d376c7071870.tar.bz2
lombok-0d7df01a0711604ce3da57e11815d376c7071870.zip
Updated the tests to reflect recent modifications: use 'this' where possible and add @SuppressWarnings for all generated fields and methods.
Diffstat (limited to 'test/delombok/resource/after/SetterPlain.java')
-rw-r--r--test/delombok/resource/after/SetterPlain.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/delombok/resource/after/SetterPlain.java b/test/delombok/resource/after/SetterPlain.java
index 8faad0ec..39aa7b61 100644
--- a/test/delombok/resource/after/SetterPlain.java
+++ b/test/delombok/resource/after/SetterPlain.java
@@ -1,9 +1,11 @@
class SetterPlain {
int i;
int foo;
+ @java.lang.SuppressWarnings("all")
public void setI(final int i) {
this.i = i;
}
+ @java.lang.SuppressWarnings("all")
public void setFoo(final int foo) {
this.foo = foo;
}