mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
Add missing @Override annotations
... and suppress "serial" warnings
This commit is contained in:
+1
@@ -117,6 +117,7 @@ public class RestClientProxyRegistryIntegrationTests {
|
||||
void beansAreCreatedUsingBeanClassLoader() {
|
||||
ClassLoader beanClassLoader = new OverridingClassLoader(getClass().getClassLoader()) {
|
||||
|
||||
@Override
|
||||
protected boolean isEligibleForOverriding(String className) {
|
||||
return className.contains("EchoA");
|
||||
};
|
||||
|
||||
+1
@@ -137,6 +137,7 @@ class WebAsyncManagerTests {
|
||||
}
|
||||
|
||||
@Test // gh-30232
|
||||
@SuppressWarnings("serial")
|
||||
void startCallableProcessingSubmitException() throws Exception {
|
||||
RuntimeException ex = new RuntimeException();
|
||||
|
||||
|
||||
@@ -50,6 +50,7 @@ class OncePerRequestFilterTests {
|
||||
|
||||
|
||||
@BeforeEach
|
||||
@SuppressWarnings("serial")
|
||||
public void setup() throws Exception {
|
||||
this.request = new MockHttpServletRequest();
|
||||
this.request.setScheme("http");
|
||||
|
||||
Reference in New Issue
Block a user