Skip to content

Commit b5fba14

Browse files
committed
Fix Checkstyle violation
Eclipse apparently sorts static imports differently.
1 parent fc38bb4 commit b5fba14

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

spring-test/src/test/java/org/springframework/test/context/support/TestConstructorUtilsTests.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
import org.springframework.test.context.TestConstructor;
2727

2828
import static org.assertj.core.api.Assertions.assertThat;
29-
import static org.springframework.test.context.TestConstructor.TEST_CONSTRUCTOR_AUTOWIRE_MODE_PROPERTY_NAME;
3029
import static org.springframework.test.context.TestConstructor.AutowireMode.ALL;
3130
import static org.springframework.test.context.TestConstructor.AutowireMode.ANNOTATED;
3231

@@ -105,7 +104,7 @@ private void setGlobalFlag() {
105104
}
106105

107106
private void setGlobalFlag(String flag) {
108-
SpringProperties.setProperty(TEST_CONSTRUCTOR_AUTOWIRE_MODE_PROPERTY_NAME, flag);
107+
SpringProperties.setProperty(TestConstructor.TEST_CONSTRUCTOR_AUTOWIRE_MODE_PROPERTY_NAME, flag);
109108
}
110109

111110

0 commit comments

Comments
 (0)