[Swift-commit] r2975 - trunk/src/org/griphyn/vdl/engine

noreply at svn.ci.uchicago.edu noreply at svn.ci.uchicago.edu
Wed Jun 24 15:17:20 CDT 2009


Author: benc
Date: 2009-06-24 15:17:20 -0500 (Wed, 24 Jun 2009)
New Revision: 2975

Modified:
   trunk/src/org/griphyn/vdl/engine/VariableScope.java
Log:
public modifier missing in one of the constants in VariableScope. added for
consistency.

Modified: trunk/src/org/griphyn/vdl/engine/VariableScope.java
===================================================================
--- trunk/src/org/griphyn/vdl/engine/VariableScope.java	2009-06-22 21:29:06 UTC (rev 2974)
+++ trunk/src/org/griphyn/vdl/engine/VariableScope.java	2009-06-24 20:17:20 UTC (rev 2975)
@@ -19,7 +19,7 @@
 public class VariableScope {
 
 	/** permit array up-assignment, but not entire variables */
-	final static int ENCLOSURE_LOOP = 301923;
+	public final static int ENCLOSURE_LOOP = 301923;
 
 	/** permit all upwards assignments */
 	public static final int ENCLOSURE_ALL = 301924;




More information about the Swift-commit mailing list