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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main/src/core/Mono.Texteditor/Mono.TextEditor.Highlighting.Regex/Regex.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/main/src/core/Mono.Texteditor/Mono.TextEditor.Highlighting.Regex/Regex.cs b/main/src/core/Mono.Texteditor/Mono.TextEditor.Highlighting.Regex/Regex.cs
index c945b9c28a..435e96fefa 100644
--- a/main/src/core/Mono.Texteditor/Mono.TextEditor.Highlighting.Regex/Regex.cs
+++ b/main/src/core/Mono.Texteditor/Mono.TextEditor.Highlighting.Regex/Regex.cs
@@ -40,7 +40,6 @@ namespace Mono.TextEditor.Highlighting
if (curOffset >= doc.Length) {
break;
}
- Console.WriteLine (pattern[i] +"&"+ doc [curOffset]);
if (pattern[i] == doc [curOffset]) {
return RegexMatch.NoMatch;
}