diff options
Diffstat (limited to 'weaver')
-rw-r--r-- | weaver/src/test/java/fluffy/Aspect.java | 12 | ||||
-rw-r--r-- | weaver/src/test/java/fluffy/Base.java | 6 | ||||
-rw-r--r-- | weaver/src/test/java/fluffy/Derived.java | 10 |
3 files changed, 14 insertions, 14 deletions
diff --git a/weaver/src/test/java/fluffy/Aspect.java b/weaver/src/test/java/fluffy/Aspect.java index 401ce9ba8..d4b10dc32 100644 --- a/weaver/src/test/java/fluffy/Aspect.java +++ b/weaver/src/test/java/fluffy/Aspect.java @@ -4,20 +4,20 @@ import org.aspectj.runtime.internal.AroundClosure; public class Aspect { public static void ignoreMe() {} - + public static void before_method_call() { - System.out.println("before"); + System.out.println("before"); } - + public static void afterReturning_method_call() { - System.out.println("afterReturning"); + System.out.println("afterReturning"); } public static void afterThrowing_method_execution(Throwable t) { - System.out.println("afterThrowing " + t); + System.out.println("afterThrowing " + t); t.printStackTrace(); } - + public static Object aroundFun(AroundClosure c) { System.out.println("around"); try { diff --git a/weaver/src/test/java/fluffy/Base.java b/weaver/src/test/java/fluffy/Base.java index 4cdb1f772..fb794f742 100644 --- a/weaver/src/test/java/fluffy/Base.java +++ b/weaver/src/test/java/fluffy/Base.java @@ -4,15 +4,15 @@ public class Base { public static void onlyBase() {} public static void both() {} - + public void onlyBaseNonStatic() {} public void bothNonStatic() {} public int onlyBase; public int both; - + public Base() {} public Base(int i) {} - + public void m() throws CloneNotSupportedException {} } diff --git a/weaver/src/test/java/fluffy/Derived.java b/weaver/src/test/java/fluffy/Derived.java index ad0842c18..10f8f60f9 100644 --- a/weaver/src/test/java/fluffy/Derived.java +++ b/weaver/src/test/java/fluffy/Derived.java @@ -6,15 +6,15 @@ public class Derived extends Base { public static void onlyDerived() throws IOException, CloneNotSupportedException {} public static void both() {} - + public void onlyDerivedNonStatic() {} public void bothNonStatic() {} - + public int onlyDerived; public int both; - + public Derived() {} - + public void m() {} - + } |