aboutsummaryrefslogtreecommitdiff
path: root/test/lombok/resource/after/GetterAlreadyExists.java
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2009-12-01 23:23:35 +0100
committerRoel Spilker <r.spilker@gmail.com>2009-12-01 23:31:12 +0100
commit2aebaff46026dbfa447fd7454472e88c41dc8103 (patch)
tree609c69c3cd5277e861315a2b23deb86a8e5c2de9 /test/lombok/resource/after/GetterAlreadyExists.java
parent2a56f341d0073099859db815caf9d455f74e6198 (diff)
downloadlombok-2aebaff46026dbfa447fd7454472e88c41dc8103.tar.gz
lombok-2aebaff46026dbfa447fd7454472e88c41dc8103.tar.bz2
lombok-2aebaff46026dbfa447fd7454472e88c41dc8103.zip
Moved test resource files to a better matching location
Diffstat (limited to 'test/lombok/resource/after/GetterAlreadyExists.java')
-rw-r--r--test/lombok/resource/after/GetterAlreadyExists.java132
1 files changed, 0 insertions, 132 deletions
diff --git a/test/lombok/resource/after/GetterAlreadyExists.java b/test/lombok/resource/after/GetterAlreadyExists.java
deleted file mode 100644
index fce1ba41..00000000
--- a/test/lombok/resource/after/GetterAlreadyExists.java
+++ /dev/null
@@ -1,132 +0,0 @@
-class Getter1 {
- boolean foo;
- boolean hasFoo() {
- return true;
- }
-}
-class Getter2 {
- boolean foo;
- boolean isFoo() {
- return true;
- }
-}
-class Getter3 {
- boolean foo;
- boolean getFoo() {
- return true;
- }
-}
-class Getter4 {
- String foo;
- String hasFoo() {
- return null;
- }
- public String getFoo() {
- return foo;
- }
-}
-class Getter5 {
- String foo;
- String isFoo() {
- return null;
- }
- public String getFoo() {
- return foo;
- }
-}
-class Getter6 {
- String foo;
- String getFoo() {
- return null;
- }
-}
-class Getter7 {
- String foo;
- boolean hasFoo() {
- return false;
- }
- public String getFoo() {
- return foo;
- }
-}
-class Getter8 {
- String foo;
- boolean isFoo() {
- return false;
- }
- public String getFoo() {
- return foo;
- }
-}
-class Getter9 {
- String foo;
- boolean getFoo() {
- return false;
- }
-}
-class Getter10 {
- boolean foo;
- static boolean hasFoo() {
- return false;
- }
-}
-class Getter11 {
- boolean foo;
- static boolean isFoo() {
- return false;
- }
-}
-class Getter12 {
- boolean foo;
- static boolean getFoo() {
- return false;
- }
-}
-class Getter13 {
- String foo;
- static boolean hasFoo() {
- return false;
- }
- public String getFoo() {
- return foo;
- }
-}
-class Getter14 {
- String foo;
- static boolean isFoo() {
- return false;
- }
- public String getFoo() {
- return foo;
- }
-}
-class Getter15 {
- String foo;
- static boolean getFoo() {
- return false;
- }
-}
-class Getter16 {
- String foo;
- static String hasFoo() {
- return false;
- }
- public String getFoo() {
- return foo;
- }
-}
-class Getter17 {
- String foo;
- static String isFoo() {
- return false;
- }
- public String getFoo() {
- return foo;
- }
-}
-class Getter18 {
- String foo;
- static String getFoo() {
- return false;
- }
-} \ No newline at end of file