From b1877a77be41695259108d2c755c87051b3f0d07 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Mon, 16 Jul 2012 22:24:04 +0200 Subject: fixed tests since Robbert Jan's fix for issue 377. --- test/transform/resource/after-ecj/DelegateRecursion.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'test/transform/resource/after-ecj/DelegateRecursion.java') diff --git a/test/transform/resource/after-ecj/DelegateRecursion.java b/test/transform/resource/after-ecj/DelegateRecursion.java index 3d9db9ef..7d1705a7 100644 --- a/test/transform/resource/after-ecj/DelegateRecursion.java +++ b/test/transform/resource/after-ecj/DelegateRecursion.java @@ -1,21 +1,21 @@ import lombok.Delegate; class DelegateRecursionOuterMost { private final @Delegate DelegateRecursionCenter center = new DelegateRecursionCenter(); - public @java.lang.SuppressWarnings("all") void innerMostMethod() { - this.center.innerMostMethod(); - } DelegateRecursionOuterMost() { super(); } + public @java.lang.SuppressWarnings("all") void innerMostMethod() { + this.center.innerMostMethod(); + } } class DelegateRecursionCenter { private final @Delegate DelegateRecursionInnerMost inner = new DelegateRecursionInnerMost(); - public @java.lang.SuppressWarnings("all") void innerMostMethod() { - this.inner.innerMostMethod(); - } DelegateRecursionCenter() { super(); } + public @java.lang.SuppressWarnings("all") void innerMostMethod() { + this.inner.innerMostMethod(); + } } class DelegateRecursionInnerMost { DelegateRecursionInnerMost() { @@ -23,4 +23,4 @@ class DelegateRecursionInnerMost { } public void innerMostMethod() { } -} \ No newline at end of file +} -- cgit