Skip to content

Commit 3a2d838

Browse files
committed
Revert messed imports
Signed-off-by: Lukáš Kvídera <[email protected]>
1 parent b7757bf commit 3a2d838

File tree

1 file changed

+16
-15
lines changed

1 file changed

+16
-15
lines changed

spring-r2dbc/src/test/java/org/springframework/r2dbc/connection/ConnectionFactoryUtilsTests.java

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,6 @@
1616

1717
package org.springframework.r2dbc.connection;
1818

19-
import static org.assertj.core.api.Assertions.assertThat;
20-
21-
import java.util.stream.Stream;
22-
23-
import org.springframework.dao.CannotAcquireLockException;
24-
import org.springframework.dao.DataAccessResourceFailureException;
25-
import org.springframework.dao.DataIntegrityViolationException;
26-
import org.springframework.dao.DuplicateKeyException;
27-
import org.springframework.dao.PermissionDeniedDataAccessException;
28-
import org.springframework.dao.PessimisticLockingFailureException;
29-
import org.springframework.dao.QueryTimeoutException;
30-
import org.springframework.dao.TransientDataAccessResourceException;
31-
import org.springframework.r2dbc.BadSqlGrammarException;
32-
import org.springframework.r2dbc.UncategorizedR2dbcException;
33-
3419
import io.r2dbc.spi.R2dbcBadGrammarException;
3520
import io.r2dbc.spi.R2dbcDataIntegrityViolationException;
3621
import io.r2dbc.spi.R2dbcException;
@@ -43,6 +28,22 @@
4328
import org.junit.jupiter.params.ParameterizedTest;
4429
import org.junit.jupiter.params.provider.Arguments;
4530
import org.junit.jupiter.params.provider.MethodSource;
31+
import org.springframework.dao.CannotAcquireLockException;
32+
import org.springframework.dao.DataAccessResourceFailureException;
33+
import org.springframework.dao.DataIntegrityViolationException;
34+
import org.springframework.dao.DuplicateKeyException;
35+
import org.springframework.dao.PermissionDeniedDataAccessException;
36+
import org.springframework.dao.PessimisticLockingFailureException;
37+
import org.springframework.dao.QueryTimeoutException;
38+
import org.springframework.dao.TransientDataAccessResourceException;
39+
import org.springframework.r2dbc.BadSqlGrammarException;
40+
import org.springframework.r2dbc.UncategorizedR2dbcException;
41+
42+
import java.util.stream.Stream;
43+
44+
import static org.assertj.core.api.Assertions.assertThat;
45+
46+
4647

4748
/**
4849
* Tests for {@link ConnectionFactoryUtils}.

0 commit comments

Comments
 (0)