Skip to content

Commit 9cdd0c3

Browse files
tobias-lippertphilwebb
authored andcommitted
Remove unnecessary semicolons
See gh-39259
1 parent 17902c9 commit 9cdd0c3

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/info/InfoContributorFallback.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ public enum InfoContributorFallback {
3737
/**
3838
* Do not fall back, thereby disabling the info contributor.
3939
*/
40-
DISABLE;
40+
DISABLE
4141

4242
}

spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/signalfx/SignalFxProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public enum HistogramType {
116116
/**
117117
* Delta histogram.
118118
*/
119-
DELTA;
119+
DELTA
120120

121121
}
122122

spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/tracing/TracingProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ public enum PropagationType {
268268
* <a href="https://github.com/openzipkin/b3-propagation#multiple-headers">B3
269269
* multiple headers</a> propagation.
270270
*/
271-
B3_MULTI;
271+
B3_MULTI
272272

273273
}
274274

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cassandra/CassandraProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ public enum Compression {
482482
/**
483483
* No compression.
484484
*/
485-
NONE;
485+
NONE
486486

487487
}
488488

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jackson/JacksonProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ public enum ConstructorDetectorStrategy {
224224
* Refuse to decide implicit mode and instead throw an InvalidDefinitionException
225225
* for ambiguous cases.
226226
*/
227-
EXPLICIT_ONLY;
227+
EXPLICIT_ONLY
228228

229229
}
230230

spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/context/SpringBootTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ enum UseMainMethod {
211211
* that class does not have a main method, a test-specific
212212
* {@link SpringApplication} will be used.
213213
*/
214-
WHEN_AVAILABLE;
214+
WHEN_AVAILABLE
215215

216216
}
217217

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/config/ConfigData.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ public enum Option {
281281
* profile specific sibling imports.
282282
* @since 2.4.5
283283
*/
284-
PROFILE_SPECIFIC;
284+
PROFILE_SPECIFIC
285285

286286
}
287287

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/config/ConfigDataEnvironmentContributor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ enum Kind {
470470
/**
471471
* A valid location that contained nothing to load.
472472
*/
473-
EMPTY_LOCATION;
473+
EMPTY_LOCATION
474474

475475
}
476476

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/config/ConfigDataEnvironmentContributors.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ enum BinderOption {
326326
/**
327327
* Throw an exception if an inactive contributor contains a bound value.
328328
*/
329-
FAIL_ON_BIND_TO_INACTIVE_SOURCE;
329+
FAIL_ON_BIND_TO_INACTIVE_SOURCE
330330

331331
}
332332

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/bind/BindMethod.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ public enum BindMethod {
3232
/**
3333
* Value object using constructor binding.
3434
*/
35-
VALUE_OBJECT;
35+
VALUE_OBJECT
3636

3737
}

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/server/GracefulShutdownResult.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ public enum GracefulShutdownResult {
3939
/**
4040
* The server was shutdown immediately, ignoring any active requests.
4141
*/
42-
IMMEDIATE;
42+
IMMEDIATE
4343

4444
}

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/server/Shutdown.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ public enum Shutdown {
3333
/**
3434
* The {@link WebServer} should shut down immediately.
3535
*/
36-
IMMEDIATE;
36+
IMMEDIATE
3737

3838
}

0 commit comments

Comments
 (0)