zeroflag commented on a change in pull request #486:
URL: https://github.com/apache/knox/pull/486#discussion_r698306001
##########
File path:
gateway-server/src/test/java/org/apache/knox/gateway/services/token/impl/JDBCTokenStateServiceTest.java
##########
@@ -49,6 +36,25 @@
import org.junit.Test;
import org.junit.rules.TemporaryFolder;
+import java.nio.file.Path;
+import java.nio.file.Paths;
+import java.sql.Connection;
+import java.sql.PreparedStatement;
+import java.sql.ResultSet;
+import java.sql.SQLException;
+import java.text.SimpleDateFormat;
+import java.util.ArrayList;
+import java.util.Date;
+import java.util.List;
+import java.util.Locale;
+import java.util.UUID;
+import java.util.concurrent.TimeUnit;
+
+import static java.nio.charset.StandardCharsets.UTF_8;
Review comment:
I reconfigured it so that static comes first, then java.* then org.*.
This order matches the original order of the affected files. But I see
exceptions, for example in GatewayServer.java, org.* imports are followed by
java.* imports.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]