Remove unnecessary static modifiers
See gh-38739
This commit is contained in:
committed by
Phillip Webb
parent
ac18e3015c
commit
d3a51e56b7
@@ -162,7 +162,7 @@ class ImportTestcontainersTests {
|
||||
}
|
||||
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
static @interface ContainerAnnotation {
|
||||
@interface ContainerAnnotation {
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -68,7 +68,7 @@ class TestcontainersPropertySourceAutoConfigurationTests {
|
||||
}
|
||||
|
||||
@ConfigurationProperties("container")
|
||||
static record ContainerProperties(int port) {
|
||||
record ContainerProperties(int port) {
|
||||
}
|
||||
|
||||
static class TestBean {
|
||||
|
||||
Reference in New Issue
Block a user