[Swift-commit] r2582 - trunk/src/org/griphyn/vdl/karajan

noreply at svn.ci.uchicago.edu noreply at svn.ci.uchicago.edu
Sun Feb 22 11:01:18 CST 2009


Author: benc
Date: 2009-02-22 11:01:18 -0600 (Sun, 22 Feb 2009)
New Revision: 2582

Modified:
   trunk/src/org/griphyn/vdl/karajan/Loader.java
Log:
fix whitespace in Loader

Modified: trunk/src/org/griphyn/vdl/karajan/Loader.java
===================================================================
--- trunk/src/org/griphyn/vdl/karajan/Loader.java	2009-02-22 17:00:23 UTC (rev 2581)
+++ trunk/src/org/griphyn/vdl/karajan/Loader.java	2009-02-22 17:01:18 UTC (rev 2582)
@@ -88,7 +88,7 @@
 		}
 		
 		if (!new File(project).exists()) {
-		    System.err.println("SwiftScript program does not exist: " + project + "\n");
+			System.err.println("SwiftScript program does not exist: " + project + "\n");
 			shortUsage();
 			System.exit(1);
 		}
@@ -165,13 +165,13 @@
 			// TODO should not be referring to vds.home any more
 			stack.setGlobal("vds.home", System.getProperty("vds.home"));
 
-            List arguments = ap.getArguments();
-            if (ap.hasValue(ARG_RESUME)) {
-                arguments.add("-rlog:resume=" + ap.getStringValue(ARG_RESUME));
-            }
+			List arguments = ap.getArguments();
+			if (ap.hasValue(ARG_RESUME)) {
+				arguments.add("-rlog:resume=" + ap.getStringValue(ARG_RESUME));
+			}
 			ec.setArguments(arguments);
-            
-            ec.start(stack);
+
+			ec.start(stack);
 			ec.waitFor();
 			if (ec.isFailed()) {
 				runerror = true;




More information about the Swift-commit mailing list