You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ga...@apache.org on 2008/03/13 04:18:08 UTC

svn commit: r636616 - /geronimo/server/trunk/framework/modules/geronimo-commands/src/main/groovy/org/apache/geronimo/commands/StopServerCommand.groovy

Author: gawor
Date: Wed Mar 12 20:17:56 2008
New Revision: 636616

URL: http://svn.apache.org/viewvc?rev=636616&view=rev
Log:
untabify

Modified:
    geronimo/server/trunk/framework/modules/geronimo-commands/src/main/groovy/org/apache/geronimo/commands/StopServerCommand.groovy

Modified: geronimo/server/trunk/framework/modules/geronimo-commands/src/main/groovy/org/apache/geronimo/commands/StopServerCommand.groovy
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/framework/modules/geronimo-commands/src/main/groovy/org/apache/geronimo/commands/StopServerCommand.groovy?rev=636616&r1=636615&r2=636616&view=diff
==============================================================================
--- geronimo/server/trunk/framework/modules/geronimo-commands/src/main/groovy/org/apache/geronimo/commands/StopServerCommand.groovy (original)
+++ geronimo/server/trunk/framework/modules/geronimo-commands/src/main/groovy/org/apache/geronimo/commands/StopServerCommand.groovy Wed Mar 12 20:17:56 2008
@@ -47,10 +47,10 @@
 
         io.out.println("Stopping Geronimo server...");  
         try {
-        	server.shutdown();
-        	io.out.println("Shutdown request has been issued");
+                server.shutdown();
+                io.out.println("Shutdown request has been issued");
         } catch (Exception e) {
-			io.out.println("Unable to shutdown the server: " + e.getMessage());
+                io.out.println("Unable to shutdown the server: " + e.getMessage());
         }                
     }
 }