diff options
Diffstat (limited to 'test/transform/resource/after-delombok')
-rw-r--r-- | test/transform/resource/after-delombok/DelegateRecursion.java | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/test/transform/resource/after-delombok/DelegateRecursion.java b/test/transform/resource/after-delombok/DelegateRecursion.java deleted file mode 100644 index d86d6044..00000000 --- a/test/transform/resource/after-delombok/DelegateRecursion.java +++ /dev/null @@ -1,20 +0,0 @@ -//ignore - This test fails, but, fixing it is going to take a long time and we don't have it in the planning. Having a failing test is very annoying for e.g. 'ant test'. - -class DelegateRecursionOuterMost { - private final DelegateRecursionCenter center = new DelegateRecursionCenter(); - @java.lang.SuppressWarnings("all") - public void innerMostMethod() { - this.center.innerMostMethod(); - } -} -class DelegateRecursionCenter { - private final DelegateRecursionInnerMost inner = new DelegateRecursionInnerMost(); - @java.lang.SuppressWarnings("all") - public void innerMostMethod() { - this.inner.innerMostMethod(); - } -} -class DelegateRecursionInnerMost { - public void innerMostMethod() { - } -}
\ No newline at end of file |