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/quicklook/security/appperms/src/java/TestServlet.java b/appserver/tests/quicklook/security/appperms/src/java/TestServlet.java
index 20cd67a..dbde0cd 100644
--- a/appserver/tests/quicklook/security/appperms/src/java/TestServlet.java
+++ b/appserver/tests/quicklook/security/appperms/src/java/TestServlet.java
@@ -28,7 +28,7 @@
 import jakarta.servlet.http.*;
 
 public class TestServlet extends HttpServlet {
-   
+
     @EJB
     private BeanRootInterface root;
 
@@ -90,7 +90,7 @@
                             checkReport.append("servlet - success for WAR.txt; ");
                         } else
                             checkReport.append("servlet - bypass for WAR.txt; ");
-                        
+
                     } catch (AccessControlException e) {
                         checkReport.append("servlet - failed for WAR.txt; ");
                     }
@@ -122,9 +122,9 @@
                     String crStr = checkReport.toString();
                     out.println("test: " + crStr);
 
-                    
-                    
-                    if (hello.equals(hello2) && 
+
+
+                    if (hello.equals(hello2) &&
                         !crStr.contains("failed") &&
                         !hello.contains("failed")) {
                         status = true;