Skip to content

Commit

Permalink
Merge pull request spring-projects#13144 from dreis2211:remove-unnece…
Browse files Browse the repository at this point in the history
…ssary-semicolons

* pr/13144:
  Remove unnecessary semicolons
  • Loading branch information
snicoll committed May 11, 2018
2 parents 972d952 + e6a23fa commit 846e43f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ public enum ShowDetails {
/**
* Always show details in the response.
*/
ALWAYS;
ALWAYS

}
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ public String getTarget() {

private enum TaskType {

CRON, FIXED_DELAY, FIXED_RATE;
CRON, FIXED_DELAY, FIXED_RATE

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ public enum RepositoryType {
/**
* Enables reactive repositories.
*/
REACTIVE;
REACTIVE

}
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class ZipHeaderPeekInputStreamTests {
public void hasZipHeaderReturnsTrueWhenStreamStartsWithZipHeader()
throws IOException {
try (ZipHeaderPeekInputStream in = new ZipHeaderPeekInputStream(
new ByteArrayInputStream(new byte[] { 0x50, 0x4b, 0x03, 0x04, 5, 6 }));) {
new ByteArrayInputStream(new byte[] { 0x50, 0x4b, 0x03, 0x04, 5, 6 }))) {
assertThat(in.hasZipHeader()).isTrue();
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ public void setFruit(Set<Fruit> fruit) {

enum Fruit {

APPLE, BANANA, ORANGE;
APPLE, BANANA, ORANGE

}

Expand Down

0 comments on commit 846e43f

Please sign in to comment.