Remove unnecessary semicolons in enum declarations

Closes gh-32069
This commit is contained in:
mnhock
2024-01-20 12:36:53 +01:00
committed by Sam Brannen
parent 73725905ba
commit a8fa98e2a6
2 changed files with 8 additions and 8 deletions

View File

@@ -165,7 +165,7 @@ public @interface EnableLoadTimeWeaving {
* is present in the classpath. If there is no such resource, then AspectJ
* load-time weaving will be switched off.
*/
AUTODETECT;
}
AUTODETECT
}
}

View File

@@ -141,8 +141,8 @@ public @interface DirtiesContext {
* The associated {@code ApplicationContext} will be marked as
* <em>dirty</em> after the corresponding test method.
*/
AFTER_METHOD;
}
AFTER_METHOD
}
/**
@@ -178,8 +178,8 @@ public @interface DirtiesContext {
* The associated {@code ApplicationContext} will be marked as
* <em>dirty</em> after the test class.
*/
AFTER_CLASS;
}
AFTER_CLASS
}
/**
@@ -212,7 +212,7 @@ public @interface DirtiesContext {
* at the lowest level in the context hierarchy that is visible from the
* current test.
*/
CURRENT_LEVEL;
}
CURRENT_LEVEL
}
}