bug fix...was far too late last night to be trying to count letters...
authorjohn <john>
Mon, 15 Apr 2002 10:17:28 +0000 (10:17 +0000)
committerjohn <john>
Mon, 15 Apr 2002 10:17:28 +0000 (10:17 +0000)
the out of bounds error being generated in the features.1-0.rdf should go away now

source/mir/misc/StringUtil.java

index 409d5a0..b4dccd1 100755 (executable)
@@ -177,7 +177,7 @@ public final class StringUtil {
                        returnDate.append(date.substring(11,13));
                        returnDate.append(date.substring(14,16));
                        returnDate.append(date.substring(17,19));
-                       returnDate.append(date.substring(26,29));
+                       returnDate.append(date.substring(20,22));
                        returnDate.append(":00");
                }
                return returnDate.toString();