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 9e58bed commit 1e31e77
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ protected void check() {
}
var matcher = badWords.matcher(moduleLine);
while (matcher.find()) {
diagnosticStorage.addDiagnostic(Ranges.create(i, matcher.start(), i, matcher.end()),
diagnosticStorage.addDiagnostic(
Ranges.create(i, matcher.start(), i, matcher.end()),
info.getMessage(matcher.group()));
}
}
Expand Down

0 comments on commit 1e31e77

Please sign in to comment.