Commit b0433d66 authored by Stephane Nicoll's avatar Stephane Nicoll

Merge branch '2.0.x'

parents b88a20fa 846e43ff
...@@ -38,6 +38,6 @@ public enum ShowDetails { ...@@ -38,6 +38,6 @@ public enum ShowDetails {
/** /**
* Always show details in the response. * Always show details in the response.
*/ */
ALWAYS; ALWAYS
} }
...@@ -277,7 +277,7 @@ public class ScheduledTasksEndpoint { ...@@ -277,7 +277,7 @@ public class ScheduledTasksEndpoint {
private enum TaskType { private enum TaskType {
CRON, FIXED_DELAY, FIXED_RATE; CRON, FIXED_DELAY, FIXED_RATE
} }
......
...@@ -42,6 +42,6 @@ public enum RepositoryType { ...@@ -42,6 +42,6 @@ public enum RepositoryType {
/** /**
* Enables reactive repositories. * Enables reactive repositories.
*/ */
REACTIVE; REACTIVE
} }
...@@ -36,7 +36,7 @@ public class ZipHeaderPeekInputStreamTests { ...@@ -36,7 +36,7 @@ public class ZipHeaderPeekInputStreamTests {
public void hasZipHeaderReturnsTrueWhenStreamStartsWithZipHeader() public void hasZipHeaderReturnsTrueWhenStreamStartsWithZipHeader()
throws IOException { throws IOException {
try (ZipHeaderPeekInputStream in = new ZipHeaderPeekInputStream( 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(); assertThat(in.hasZipHeader()).isTrue();
} }
} }
......
...@@ -203,7 +203,7 @@ public class BindFailureAnalyzerTests { ...@@ -203,7 +203,7 @@ public class BindFailureAnalyzerTests {
enum Fruit { enum Fruit {
APPLE, BANANA, ORANGE; APPLE, BANANA, ORANGE
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment