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/ha/ssoFailover/WebTest.java b/appserver/tests/appserv-tests/devtests/web/ha/ssoFailover/WebTest.java
index b13617d..da15b11 100644
--- a/appserver/tests/appserv-tests/devtests/web/ha/ssoFailover/WebTest.java
+++ b/appserver/tests/appserv-tests/devtests/web/ha/ssoFailover/WebTest.java
@@ -64,7 +64,7 @@
user = args[5];
password = args[6];
}
-
+
public static void main(String[] args) {
stat.addDescription("Unit test for GlassFish Issue 1933");
@@ -152,7 +152,7 @@
// follow the redirect
int cA1 = go(port1, new URL(redirect).getPath(), "A");
int cB1 = go(port1, contextRootPrefix + "-b/index.jsp", "B");
-
+
// stop inst1
asadmin("stop-local-instance", instancename1);
@@ -208,7 +208,7 @@
System.out.println(sb);
os.write("\n\n".getBytes());
-
+
is = sock.getInputStream();
br = new BufferedReader(new InputStreamReader(is));
@@ -231,7 +231,7 @@
close(os);
close(br);
close(is);
- }
+ }
if (count == -1) {
throw new Exception("Failed to access index.jsp");