Skip to content

Commit c79ec85

Browse files
huxuxuyanixel2007
authored andcommitted
Включено использование CaseInsensitivePattern
1 parent 4aa6f7a commit c79ec85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/github/_1c_syntax/bsl/languageserver/diagnostics/IncorrectLineBreakDiagnostic.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public void configure(Map<String, Object> configuration) {
9696
}
9797

9898
public Pattern getPatternSearch(String StartPattern, String SearchSymbols, String EndPattern) {
99-
return Pattern.compile(StartPattern + SearchSymbols + EndPattern);
99+
return CaseInsensitivePattern.compile(StartPattern + SearchSymbols + EndPattern);
100100
}
101101

102102
@Override

0 commit comments

Comments
 (0)