Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / cadi / servlet-sample / src / test / java / org / onap / aaf / sample / cadi / jetty / JettyStandalone.java
index 049e45e..6edd6f5 100644 (file)
@@ -30,17 +30,17 @@ import org.onap.aaf.cadi.PropAccess;
 
 
 public class JettyStandalone {
-       public static void main(String[] args) {
-               PropAccess access = new PropAccess(args);
-               try {
-                       Server server = JettyServletServer.run(access, "/caditest", MyServlet.class, 3456);
-               server.join();
-               } catch (Exception e) {
-                       access.log(Level.ERROR, e);
-               } finally {
-                       access.log(Level.INFO,"Stopping Service");
-               }
-               
-       }       
+    public static void main(String[] args) {
+        PropAccess access = new PropAccess(args);
+        try {
+            Server server = JettyServletServer.run(access, "/caditest", MyServlet.class, 3456);
+            server.join();
+        } catch (Exception e) {
+            access.log(Level.ERROR, e);
+        } finally {
+            access.log(Level.INFO,"Stopping Service");
+        }
+        
+    }    
 
 }