Remove unnecessary semicolons

Closes gh-13144
This commit is contained in:
dreis2211
2018-05-11 12:05:10 +02:00
committed by Stephane Nicoll
parent 972d952716
commit e6a23fa3ff
5 changed files with 5 additions and 5 deletions

View File

@@ -38,6 +38,6 @@ public enum ShowDetails {
/**
* Always show details in the response.
*/
ALWAYS;
ALWAYS
}

View File

@@ -277,7 +277,7 @@ public class ScheduledTasksEndpoint {
private enum TaskType {
CRON, FIXED_DELAY, FIXED_RATE;
CRON, FIXED_DELAY, FIXED_RATE
}

View File

@@ -42,6 +42,6 @@ public enum RepositoryType {
/**
* Enables reactive repositories.
*/
REACTIVE;
REACTIVE
}

View File

@@ -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();
}
}

View File

@@ -203,7 +203,7 @@ public class BindFailureAnalyzerTests {
enum Fruit {
APPLE, BANANA, ORANGE;
APPLE, BANANA, ORANGE
}