Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System/System.Text.RegularExpressions/BaseMachine.cs')
-rw-r--r--mcs/class/System/System.Text.RegularExpressions/BaseMachine.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System/System.Text.RegularExpressions/BaseMachine.cs b/mcs/class/System/System.Text.RegularExpressions/BaseMachine.cs
index ac0faba58e2..1d89c4e84fd 100644
--- a/mcs/class/System/System.Text.RegularExpressions/BaseMachine.cs
+++ b/mcs/class/System/System.Text.RegularExpressions/BaseMachine.cs
@@ -71,7 +71,7 @@ namespace System.Text.RegularExpressions
int gcount = m.Groups.Count;
for (int gindex = 1; gindex < gcount; gindex++) {
- Group grp = m.Groups [gindex];
+ Group grp = m.Groups [gindex];
if (grp.Length > 0)
splits.Add (input.Substring (grp.Index, grp.Length));
}