log4j implemented for the producer subsystem
[mir.git] / source / mir / misc / StringUtil.java
index ce1edb6..cb915fb 100755 (executable)
@@ -40,7 +40,7 @@ import  gnu.regexp.*;
 /**
  * Statische Hilfsmethoden zur Stringbehandlung
  *
- * @version $Id: StringUtil.java,v 1.26 2002/11/04 04:35:21 mh Exp $
+ * @version $Id: StringUtil.java,v 1.27 2002/11/25 19:06:45 zapata Exp $
  * @author mir-coders group
  *
  */
@@ -554,13 +554,17 @@ public final class StringUtil {
                 return s;
         }
 
-
         /**
          * verwandelt einen String in eine gültige Url, konvertiert Sonderzeichen
          * und Spaces werden zu Underscores
          *
          * @return gültige Url
          */
+/*
+        ML: I don't exactly understand the point of this routine, and I think it isn't
+            being used anymore. (And it sometimes causes locale problems). So I commented
+            it.
+
         public static String convert2url(String s) {
                 s = toLowerCase(s);
                 StringBuffer buf = new StringBuffer();
@@ -588,7 +592,7 @@ public final class StringUtil {
                 }
                 return buf.toString();
         }
-
+*/
 
         public static String decodeHTMLinTags(String s){
                 StringBuffer buffer = new StringBuffer();