Skip to content

Commit 6aa33e7

Browse files
committed
Merge pull request palantir#173 from DickvdBrink/code-formatting
Fixed code formatting in pmd formatter
2 parents 4b00775 + 9005dfb commit 6aa33e7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/formatters/pmdFormatter.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ export class Formatter extends Lint.Formatters.AbstractFormatter {
2828
var line = lineAndCharacter.line() + 1;
2929
var character = lineAndCharacter.character() + 1;
3030

31-
output += "<file name=\"" + fileName;
32-
output += "\"><violation begincolumn=\"" + character;
31+
output += "<file name=\"" + fileName;
32+
output += "\"><violation begincolumn=\"" + character;
3333
output += "\" beginline=\"" + line;
34-
output += "\" priority=\"1\"";
35-
output += " rule=\"" + failureString + "\"> </violation></file>";
36-
}
34+
output += "\" priority=\"1\"";
35+
output += " rule=\"" + failureString + "\"> </violation></file>";
36+
}
3737
output += "</pmd>";
38-
return output;
38+
return output;
3939
}
4040
}

0 commit comments

Comments
 (0)