From 5856d2e54efe9209e415b0547174cd754473d6cc Mon Sep 17 00:00:00 2001
From: Sam Brannen <104798+sbrannen@users.noreply.github.com>
Date: Sun, 21 Jan 2024 16:27:48 +0100
Subject: [PATCH] Polish contribution
See gh-32069
---
.../context/annotation/EnableLoadTimeWeaving.java | 4 ++--
.../springframework/test/annotation/DirtiesContext.java | 8 ++++----
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/spring-context/src/main/java/org/springframework/context/annotation/EnableLoadTimeWeaving.java b/spring-context/src/main/java/org/springframework/context/annotation/EnableLoadTimeWeaving.java
index 364a6395edcc..506a45c6607c 100644
--- a/spring-context/src/main/java/org/springframework/context/annotation/EnableLoadTimeWeaving.java
+++ b/spring-context/src/main/java/org/springframework/context/annotation/EnableLoadTimeWeaving.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2018 the original author or authors.
+ * Copyright 2002-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -166,6 +166,6 @@ enum AspectJWeaving {
* load-time weaving will be switched off.
*/
AUTODETECT
- }
+ }
}
diff --git a/spring-test/src/main/java/org/springframework/test/annotation/DirtiesContext.java b/spring-test/src/main/java/org/springframework/test/annotation/DirtiesContext.java
index ec6a15375586..dff1ce6a26cc 100644
--- a/spring-test/src/main/java/org/springframework/test/annotation/DirtiesContext.java
+++ b/spring-test/src/main/java/org/springframework/test/annotation/DirtiesContext.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2023 the original author or authors.
+ * Copyright 2002-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -142,7 +142,7 @@ enum MethodMode {
* dirty after the corresponding test method.
*/
AFTER_METHOD
- }
+ }
/**
@@ -179,7 +179,7 @@ enum ClassMode {
* dirty after the test class.
*/
AFTER_CLASS
- }
+ }
/**
@@ -213,6 +213,6 @@ enum HierarchyMode {
* current test.
*/
CURRENT_LEVEL
- }
+ }
}