resolve darcs stupidity
[org.ibex.core.git] / src / gnu / regexp / RE.java
index 4e0d3bf..326b95d 100644 (file)
@@ -21,9 +21,6 @@ package gnu.regexp;
 import java.io.InputStream;
 import java.io.Reader;
 import java.io.Serializable;
-import java.util.Locale;
-import java.util.PropertyResourceBundle;
-import java.util.ResourceBundle;
 import java.util.Vector;
 
 class IntPair implements Serializable {
@@ -101,7 +98,7 @@ public class RE extends REToken {
   private static final String VERSION = "1.1.4-dev";
 
   // The localized strings are kept in a separate file
-  // XWT LOCAL: we can't bundle property lists within the xwt executable on all platforms
+  // Ibex LOCAL: we can't bundle property lists within the ibex executable on all platforms
   // private static ResourceBundle messages = PropertyResourceBundle.getBundle("gnu/regexp/MessagesBundle", Locale.getDefault());
 
   // These are, respectively, the first and last tokens in our linked list
@@ -201,7 +198,7 @@ public class RE extends REToken {
   }
 
   // Retrieves a message from the ResourceBundle
-  // XWT LOCAL: we can't bundle property lists within the xwt executable on all platforms
+  // Ibex LOCAL: we can't bundle property lists within the ibex executable on all platforms
   //            for simplicity, just lookup the errors this way.
   static final String getLocalizedMessage(String key) {
     if(key.equals("error.prefix")) return "At position {0} in regular expression pattern:";