code cleanup and formatting
[meviz.git] / src / main / java / eu / svjatoslav / meviz / Module.java
index 026ec6a..73642b0 100755 (executable)
@@ -11,12 +11,12 @@ package eu.svjatoslav.meviz;
 
 public interface Module {
 
-       public String getDescription();
+    String getDescription();
 
-       public String getModuleCommand();
+    String getModuleCommand();
 
-       public void run(String args[]) throws Exception;
+    void run(String args[]) throws Exception;
 
-       public void showCommandlineHelp();
+    void showCommandlineHelp();
 
 }