Skip to content

Commit

Permalink
Update src/main/java/com/github/_1c_syntax/bsl/languageserver/diagnos…
Browse files Browse the repository at this point in the history
…tics/BadWordsDiagnostic.java

Co-authored-by: Nikita Fedkin <[email protected]>
  • Loading branch information
artbear and nixel2007 authored Nov 26, 2023
1 parent 1e31e77 commit 8763be8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ protected void check() {
while (matcher.find()) {
diagnosticStorage.addDiagnostic(
Ranges.create(i, matcher.start(), i, matcher.end()),
info.getMessage(matcher.group()));
info.getMessage(matcher.group())
);
}
}
}
Expand Down

0 comments on commit 8763be8

Please sign in to comment.