Remove redundant suppression

See gh-26448
This commit is contained in:
weixsun 2021-05-13 17:17:10 +08:00 committed by Stephane Nicoll
parent b3e6eaec7e
commit d115361980
10 changed files with 0 additions and 10 deletions

View File

@ -420,7 +420,6 @@ abstract class AbstractJpaAutoConfigurationTests {
}
@SuppressWarnings("serial")
static class CustomJpaTransactionManager extends JpaTransactionManager {
}

View File

@ -61,7 +61,6 @@ class ResourcePropertiesBindingTests {
};
}
@SuppressWarnings("deprecation")
@Configuration(proxyBeanMethods = false)
@EnableConfigurationProperties(ResourceProperties.class)
static class TestConfiguration {

View File

@ -847,7 +847,6 @@ class WebMvcAutoConfigurationTests {
@Test
@Deprecated
@SuppressWarnings("deprecation")
void useSuffixPatternMatch() {
this.contextRunner.withPropertyValues("spring.mvc.pathmatch.use-suffix-pattern:true",
"spring.mvc.pathmatch.use-registered-suffix-pattern:true").run((context) -> {

View File

@ -34,7 +34,6 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Phillip Webb
*/
@Deprecated
@SuppressWarnings("deprecation")
@ExtendWith(SpringExtension.class)
@DirtiesContext
@ContextConfiguration(classes = ConfigFileApplicationContextInitializerTests.Config.class,

View File

@ -42,7 +42,6 @@ class AtomikosConnectionFactoryBeanTests {
verify(bean).close();
}
@SuppressWarnings("serial")
static class MockAtomikosConnectionFactoryBean extends AtomikosConnectionFactoryBean {
@Override

View File

@ -42,7 +42,6 @@ class AtomikosDataSourceBeanTests {
verify(bean).close();
}
@SuppressWarnings("serial")
static class MockAtomikosDataSourceBean extends AtomikosDataSourceBean {
@Override

View File

@ -142,7 +142,6 @@ class AnnotationConfigServletWebServerApplicationContextTests {
}
@Component
@SuppressWarnings("serial")
static class ExampleServletWithAutowired extends GenericServlet {
@Autowired

View File

@ -28,7 +28,6 @@ import javax.servlet.ServletResponse;
*
* @author Phillip Webb
*/
@SuppressWarnings("serial")
public class MockServlet extends GenericServlet {
@Override

View File

@ -44,7 +44,6 @@ class SampleCouchbaseApplicationTests {
}
private boolean serverNotRunning(RuntimeException ex) {
@SuppressWarnings("serial")
NestedCheckedException nested = new NestedCheckedException("failed", ex) {
};
if (nested.contains(FeatureNotAvailableException.class)) {

View File

@ -67,7 +67,6 @@ class SampleLiquibaseApplicationTests {
.contains("Successfully released change log lock");
}
@SuppressWarnings("serial")
private boolean serverNotRunning(IllegalStateException ex) {
NestedCheckedException nested = new NestedCheckedException("failed", ex) {
};