JSDOC/PackerRun.vala
authorAlan Knowles <alan@roojs.com>
Wed, 25 Nov 2015 09:11:11 +0000 (17:11 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 25 Nov 2015 09:11:11 +0000 (17:11 +0800)
JSDOC/PackerRun.vala

index 699c32f..4f5c6c6 100644 (file)
@@ -28,10 +28,14 @@ namespace JSDOC
                public static string opt_files_from;
                public static bool opt_debug;
                
-               
+               public static int main(string[] args) 
+               {
+                       new PackerRun(args);
+                       return 0;
+               }
 
        
-               public static int main (string[] args)
+               public PackerRun (string[] args)
                {
                
                        Object(
@@ -57,7 +61,7 @@ namespace JSDOC
                        }
                        
                        // now run the Packer...
-                       return 0;
+                       
                        
                }