Skip to content

Commit

Permalink
Improve comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kloessst committed Aug 29, 2020
1 parent f047129 commit 894c4dc
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,15 @@
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public class Issue {

// Path of to the source file using unix file separators
// Path to the source file with unix file separators
private String file;

/**
* Usage of line and column attributes by tools:
* Spotbugs -> startLine
* Checkstyle -> startLine, startColumn
* PMD -> startLine, endLine, startColumn, endColumn
*/
private Integer startLine;

private Integer endLine;
Expand Down

0 comments on commit 894c4dc

Please sign in to comment.