aboutsummaryrefslogtreecommitdiffstats
path: root/weaver
diff options
context:
space:
mode:
authorAndrey Turbanov <turbanoff@gmail.com>2021-11-20 17:31:33 +0300
committerAndrey Turbanov <turbanoff@gmail.com>2021-11-20 17:31:33 +0300
commit7cec6ee4dae90cb30d750cd1e0451665383d871f (patch)
tree0ac67654a2a93170e772b7897c1cb500ebf27b73 /weaver
parent0f85ca109b9e6ab849e201e76f62d5023cbfcb98 (diff)
downloadaspectj-7cec6ee4dae90cb30d750cd1e0451665383d871f.tar.gz
aspectj-7cec6ee4dae90cb30d750cd1e0451665383d871f.zip
Trim trailing whitespaces.
Trailing whitespaces are useless. Most of code-styles forbids them. Most of editors always trim them on save. I propose to clean up project from trailing whitespaces in all java files at once.
Diffstat (limited to 'weaver')
-rw-r--r--weaver/src/test/java/fluffy/Aspect.java12
-rw-r--r--weaver/src/test/java/fluffy/Base.java6
-rw-r--r--weaver/src/test/java/fluffy/Derived.java10
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() {}
-
+
}