Skip to content

Commit

Permalink
Fix checkstyle issue with redundany private keyword
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Marr <[email protected]>
  • Loading branch information
smarr committed Jan 30, 2016
1 parent 652f03a commit 2d40d9b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ static enum InstrumentTestTag implements SyntaxTag {
private final String name;
private final String description;

private InstrumentTestTag(String name, String description) {
InstrumentTestTag(String name, String description) {
this.name = name;
this.description = description;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public enum FrameSlotKind {

public final byte tag;

private FrameSlotKind() {
FrameSlotKind() {
this.tag = (byte) ordinal();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public enum Reason {

final String message;

private Reason(String message) {
Reason(String message) {
this.message = message;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public enum StandardSyntaxTag implements SyntaxTag {
private final String name;
private final String description;

private StandardSyntaxTag(String name, String description) {
StandardSyntaxTag(String name, String description) {
this.name = name;
this.description = description;
}
Expand Down

0 comments on commit 2d40d9b

Please sign in to comment.