Remove unnecessary semicolons

See gh-39259
This commit is contained in:
Tobias Lippert 2024-01-21 18:41:22 +01:00 committed by Phillip Webb
parent 17902c9cec
commit 9cdd0c3776
12 changed files with 12 additions and 12 deletions

View File

@ -37,6 +37,6 @@ public enum InfoContributorFallback {
/**
* Do not fall back, thereby disabling the info contributor.
*/
DISABLE;
DISABLE
}

View File

@ -116,7 +116,7 @@ public class SignalFxProperties extends StepRegistryProperties {
/**
* Delta histogram.
*/
DELTA;
DELTA
}

View File

@ -268,7 +268,7 @@ public class TracingProperties {
* <a href="https://github.com/openzipkin/b3-propagation#multiple-headers">B3
* multiple headers</a> propagation.
*/
B3_MULTI;
B3_MULTI
}

View File

@ -482,7 +482,7 @@ public class CassandraProperties {
/**
* No compression.
*/
NONE;
NONE
}

View File

@ -224,7 +224,7 @@ public class JacksonProperties {
* Refuse to decide implicit mode and instead throw an InvalidDefinitionException
* for ambiguous cases.
*/
EXPLICIT_ONLY;
EXPLICIT_ONLY
}

View File

@ -211,7 +211,7 @@ public @interface SpringBootTest {
* that class does not have a main method, a test-specific
* {@link SpringApplication} will be used.
*/
WHEN_AVAILABLE;
WHEN_AVAILABLE
}

View File

@ -281,7 +281,7 @@ public final class ConfigData {
* profile specific sibling imports.
* @since 2.4.5
*/
PROFILE_SPECIFIC;
PROFILE_SPECIFIC
}

View File

@ -470,7 +470,7 @@ class ConfigDataEnvironmentContributor implements Iterable<ConfigDataEnvironment
/**
* A valid location that contained nothing to load.
*/
EMPTY_LOCATION;
EMPTY_LOCATION
}

View File

@ -326,7 +326,7 @@ class ConfigDataEnvironmentContributors implements Iterable<ConfigDataEnvironmen
/**
* Throw an exception if an inactive contributor contains a bound value.
*/
FAIL_ON_BIND_TO_INACTIVE_SOURCE;
FAIL_ON_BIND_TO_INACTIVE_SOURCE
}

View File

@ -32,6 +32,6 @@ public enum BindMethod {
/**
* Value object using constructor binding.
*/
VALUE_OBJECT;
VALUE_OBJECT
}

View File

@ -39,6 +39,6 @@ public enum GracefulShutdownResult {
/**
* The server was shutdown immediately, ignoring any active requests.
*/
IMMEDIATE;
IMMEDIATE
}

View File

@ -33,6 +33,6 @@ public enum Shutdown {
/**
* The {@link WebServer} should shut down immediately.
*/
IMMEDIATE;
IMMEDIATE
}