Skip to content

Commit

Permalink
Fix identation
Browse files Browse the repository at this point in the history
  • Loading branch information
costin-zaharia-sonarsource committed Jun 5, 2024
1 parent 04a2dbe commit a762e83
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -341,9 +341,9 @@ private void logMissingInputFile(String ruleId, String filePath){
private record ProjectIssue(String ruleId, String message) { }

private record Issue(String ruleId, String absolutePath, int startLine, int startColumn, int endLine, int endColumn) {
Issue(String ruleId, String path) {
this(ruleId, path, 0, 0, 0, 0);
}
Issue(String ruleId, String path) {
this(ruleId, path, 0, 0, 0, 0);
}

Issue(String ruleId, Location location) {
this(ruleId,
Expand Down

0 comments on commit a762e83

Please sign in to comment.