[Mono-bugs] [Bug 39105][Nor] Changed - System.Text.RegularExpressions.CategoryUtils.CategoryFromName fails for one-letter categories
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
Wed, 5 Mar 2003 15:25:41 -0500 (EST)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by miguel@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=39105
--- shadow/39105 Wed Mar 5 10:24:31 2003
+++ shadow/39105.tmp.17247 Wed Mar 5 15:25:41 2003
@@ -1,14 +1,14 @@
Bug#: 39105
Product: Mono/Class Libraries
Version: unspecified
OS: All
OS Details:
-Status: NEW
-Resolution:
-Severity:
+Status: RESOLVED
+Resolution: FIXED
+Severity: Unknown
Priority: Normal
Component: System
AssignedTo: mono-bugs@ximian.com
ReportedBy: mathias.hasselmann@gmx.de
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
@@ -38,6 +38,9 @@
return Category.None;
}
}
Fix: Replace 'if (name.Substring (0, 2).Equals ("Is"))' by 'if (name.Length
> 2 && name.Substring (0, 2).Equals ("Is"))'
+
+------- Additional Comments From miguel@ximian.com 2003-03-05 15:25 -------
+Fixed on CVS.