Skip to content

Commit

Permalink
remove extra semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
MetaiR committed Nov 22, 2018
1 parent 66f1fa1 commit 455174b
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 @@ -23,7 +23,7 @@ public RepeatedDataException(String... fields) {
this.fields = fields != null ? Arrays.asList(fields) : null;
}
public RepeatedDataException(String field) {
this.fields = field != null ? Collections.singletonList(field) : null;;
this.fields = field != null ? Collections.singletonList(field) : null;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public MissingRequiredDataException(String... fields) {
this.fields = fields != null ? Arrays.asList(fields) : null;
}
public MissingRequiredDataException(String field) {
this.fields = field != null ? Collections.singletonList(field) : null;;
this.fields = field != null ? Collections.singletonList(field) : null;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public MoreThanLimitsException(String... fields) {
this.fields = fields != null ? Arrays.asList(fields) : null;
}
public MoreThanLimitsException(String field) {
this.fields = field != null ? Collections.singletonList(field) : null;;
this.fields = field != null ? Collections.singletonList(field) : null;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public WrongDataException(String... fields) {
this.fields = fields != null ? Arrays.asList(fields) : null;
}
public WrongDataException(String field) {
this.fields = field != null ? Collections.singletonList(field) : null;;
this.fields = field != null ? Collections.singletonList(field) : null;
}


Expand Down

0 comments on commit 455174b

Please sign in to comment.