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/ejb/ejb32/methodintf/client/Client.java b/appserver/tests/appserv-tests/devtests/ejb/ejb32/methodintf/client/Client.java
index 0f62d41..1af2b1c 100644
--- a/appserver/tests/appserv-tests/devtests/ejb/ejb32/methodintf/client/Client.java
+++ b/appserver/tests/appserv-tests/devtests/ejb/ejb32/methodintf/client/Client.java
@@ -25,12 +25,12 @@
 
 public class Client {
 
-    private static SimpleReporterAdapter stat = 
+    private static SimpleReporterAdapter stat =
         new SimpleReporterAdapter("appserv-tests");
 
     InitialContext context;
 
-    public static void main(String args[]) { 
+    public static void main(String args[]) {
         stat.addDescription("ejb32-methodintf");
 
         try {
@@ -40,7 +40,7 @@
             stful.test();
             System.out.println("Waiting timer to expire to verify the results");
             Thread.sleep(3000);
-            boolean pass = stles.verify() && stful.verify(); 
+            boolean pass = stles.verify() && stful.verify();
             stat.addStatus("ejb32-methodintf: ", ((pass)? stat.PASS : stat.FAIL) );
 
         } catch(Exception e) {