aboutsummaryrefslogtreecommitdiff
path: root/test/delombok/resource/after/GetterAlreadyExists.java
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2010-07-21 23:52:28 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2010-07-21 23:52:28 +0200
commit59e585a0c68959eb72be34524bdad19df5dc8a4d (patch)
tree72860f9fce0a62bb1d0e8dbe3a021f4bd8f20ab4 /test/delombok/resource/after/GetterAlreadyExists.java
parent1a9f8f168aa17f77c6e27d0a740b5f7614fb5c90 (diff)
downloadlombok-59e585a0c68959eb72be34524bdad19df5dc8a4d.tar.gz
lombok-59e585a0c68959eb72be34524bdad19df5dc8a4d.tar.bz2
lombok-59e585a0c68959eb72be34524bdad19df5dc8a4d.zip
refactored the tests to prepare running ecj as well as delombok.
Diffstat (limited to 'test/delombok/resource/after/GetterAlreadyExists.java')
-rw-r--r--test/delombok/resource/after/GetterAlreadyExists.java140
1 files changed, 0 insertions, 140 deletions
diff --git a/test/delombok/resource/after/GetterAlreadyExists.java b/test/delombok/resource/after/GetterAlreadyExists.java
deleted file mode 100644
index 6a5377ba..00000000
--- a/test/delombok/resource/after/GetterAlreadyExists.java
+++ /dev/null
@@ -1,140 +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;
- }
- @java.lang.SuppressWarnings("all")
- public String getFoo() {
- return this.foo;
- }
-}
-class Getter5 {
- String foo;
- String isFoo() {
- return null;
- }
- @java.lang.SuppressWarnings("all")
- public String getFoo() {
- return this.foo;
- }
-}
-class Getter6 {
- String foo;
- String getFoo() {
- return null;
- }
-}
-class Getter7 {
- String foo;
- boolean hasFoo() {
- return false;
- }
- @java.lang.SuppressWarnings("all")
- public String getFoo() {
- return this.foo;
- }
-}
-class Getter8 {
- String foo;
- boolean isFoo() {
- return false;
- }
- @java.lang.SuppressWarnings("all")
- public String getFoo() {
- return this.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;
- }
- @java.lang.SuppressWarnings("all")
- public String getFoo() {
- return this.foo;
- }
-}
-class Getter14 {
- String foo;
- static boolean isFoo() {
- return false;
- }
- @java.lang.SuppressWarnings("all")
- public String getFoo() {
- return this.foo;
- }
-}
-class Getter15 {
- String foo;
- static boolean getFoo() {
- return false;
- }
-}
-class Getter16 {
- String foo;
- static String hasFoo() {
- return false;
- }
- @java.lang.SuppressWarnings("all")
- public String getFoo() {
- return this.foo;
- }
-}
-class Getter17 {
- String foo;
- static String isFoo() {
- return false;
- }
- @java.lang.SuppressWarnings("all")
- public String getFoo() {
- return this.foo;
- }
-}
-class Getter18 {
- String foo;
- static String getFoo() {
- return false;
- }
-} \ No newline at end of file