Trimming trailing spaces, removing tabs by a script
- using tab width of 4 spaces
- trailing space in property files is converted to unicode, so it is
visible in sources
- bat files use CRLF
- all other text files use just LF
diff --git a/appserver/tests/appserv-tests/devtests/security/timerStandalone/client/Client.java b/appserver/tests/appserv-tests/devtests/security/timerStandalone/client/Client.java
index b0c3727..5d7d017 100644
--- a/appserver/tests/appserv-tests/devtests/security/timerStandalone/client/Client.java
+++ b/appserver/tests/appserv-tests/devtests/security/timerStandalone/client/Client.java
@@ -22,7 +22,7 @@
public class Client {
- private static SimpleReporterAdapter stat =
+ private static SimpleReporterAdapter stat =
new SimpleReporterAdapter("appserv-tests");
public static void main (String[] args) {
@@ -31,8 +31,8 @@
Client client = new Client(args);
client.doTest();
stat.printSummary("security-timerStandalone");
- }
-
+ }
+
public Client (String[] args) {
}
@@ -74,7 +74,7 @@
e.printStackTrace();
stat.addStatus("local main" , stat.FAIL);
}
-
- return;
+
+ return;
}
}