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/web/servletContextDestroyedEventAttributesAvailable/WebTest.java b/appserver/tests/appserv-tests/devtests/web/servletContextDestroyedEventAttributesAvailable/WebTest.java
index 0772a31..e3ca54b 100644
--- a/appserver/tests/appserv-tests/devtests/web/servletContextDestroyedEventAttributesAvailable/WebTest.java
+++ b/appserver/tests/appserv-tests/devtests/web/servletContextDestroyedEventAttributesAvailable/WebTest.java
@@ -45,7 +45,7 @@
contextRoot = args[2];
run = args[3];
}
-
+
public static void main(String[] args) {
stat.addDescription("Unit test for Issue 6442");
@@ -63,7 +63,7 @@
stat.addStatus(TEST_NAME, stat.FAIL);
}
- stat.printSummary();
+ stat.printSummary();
}
/**
@@ -72,7 +72,7 @@
* at its contextDestroyed() method and will attempt to access the
* ServletContext attribute that was added by the servlet.
* If the attribute is present, the ServletContextListener will write
- * the word "SUCCESS" to /tmp/mytest. Otherwise, it will write FAIL to
+ * the word "SUCCESS" to /tmp/mytest. Otherwise, it will write FAIL to
* that file.
*/
public void firstRun() throws Exception {