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/servlet-3.0/sessionCookieCustomNameProgrammatic/WebTest.java b/appserver/tests/appserv-tests/devtests/web/servlet-3.0/sessionCookieCustomNameProgrammatic/WebTest.java
index 947897e..115adda 100644
--- a/appserver/tests/appserv-tests/devtests/web/servlet-3.0/sessionCookieCustomNameProgrammatic/WebTest.java
+++ b/appserver/tests/appserv-tests/devtests/web/servlet-3.0/sessionCookieCustomNameProgrammatic/WebTest.java
@@ -43,7 +43,7 @@
port = args[1];
contextRoot = args[2];
}
-
+
public static void main(String[] args) {
stat.addDescription("Unit test for customizing name of session " +
@@ -58,7 +58,7 @@
stat.addStatus(TEST_NAME, stat.FAIL);
}
- stat.printSummary();
+ stat.printSummary();
}
public String firstRun() throws Exception {
@@ -76,7 +76,7 @@
System.out.println(get);
os.write(get.getBytes());
os.write("\r\n".getBytes());
-
+
// Get the MYJSESSIONID from the response
is = sock.getInputStream();
br = new BufferedReader(new InputStreamReader(is));
@@ -145,7 +145,7 @@
System.out.println(cookie);
os.write(cookie.getBytes());
os.write("\r\n".getBytes());
-
+
is = sock.getInputStream();
br = new BufferedReader(new InputStreamReader(is));