mbi / rpms / jflex

Forked from rpms/jflex 5 years ago
Clone
Matt Wringe adb5449
--- ./src/JFlex/StateSet.java.orig	2007-04-02 11:04:11.000000000 -0400
Matt Wringe adb5449
+++ ./src/JFlex/StateSet.java	2007-04-02 11:04:38.000000000 -0400
Matt Wringe adb5449
@@ -276,14 +276,14 @@
Matt Wringe adb5449
 
Matt Wringe adb5449
   
Matt Wringe adb5449
   public String toString() {
Matt Wringe adb5449
-    StateSetEnumerator enum = states();
Matt Wringe adb5449
+    StateSetEnumerator enumer = states();
Matt Wringe adb5449
 
Matt Wringe adb5449
     StringBuffer result = new StringBuffer("{");
Matt Wringe adb5449
 
Matt Wringe adb5449
-    if ( enum.hasMoreElements() ) result.append(""+enum.nextElement());
Matt Wringe adb5449
+    if ( enumer.hasMoreElements() ) result.append(""+enumer.nextElement());
Matt Wringe adb5449
 
Matt Wringe adb5449
-    while ( enum.hasMoreElements() ) {
Matt Wringe adb5449
-      int i = enum.nextElement();
Matt Wringe adb5449
+    while ( enumer.hasMoreElements() ) {
Matt Wringe adb5449
+      int i = enumer.nextElement();
Matt Wringe adb5449
       result.append( ", "+i);
Matt Wringe adb5449
     }
Matt Wringe adb5449