Fix formatting for method printUsage().

git-svn-id: https://svn.apache.org/repos/asf/xalan/java/trunk@1347632 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/org/apache/xalan/xsltc/cmdline/Compile.java b/src/org/apache/xalan/xsltc/cmdline/Compile.java
index ebde738..e4d169c 100644
--- a/src/org/apache/xalan/xsltc/cmdline/Compile.java
+++ b/src/org/apache/xalan/xsltc/cmdline/Compile.java
@@ -45,11 +45,11 @@
  
 
     public static void printUsage() {
-        StringBuffer vers = new StringBuffer("XSLTC version " + 
-	    VERSION_MAJOR + "." + VERSION_MINOR + 
-	    ((VERSION_DELTA > 0) ? ("."+VERSION_DELTA) : ("")));
-	System.err.println(vers + "\n" + 
-		new ErrorMsg(ErrorMsg.COMPILE_USAGE_STR));
+        StringBuffer vers = new StringBuffer("XSLTC version " + VERSION_MAJOR
+                + "." + VERSION_MINOR
+                + ((VERSION_DELTA > 0) ? ("." + VERSION_DELTA) : ("")));
+        System.err.println(vers + "\n"
+                + new ErrorMsg(ErrorMsg.COMPILE_USAGE_STR));
     }
 
     /**