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

@@ -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
}