vyommani commented on code in PR #748: URL: https://github.com/apache/ranger/pull/748#discussion_r2599421852
########## security-admin/src/main/java/org/apache/ranger/rest/ServiceREST.java: ########## @@ -149,20 +149,8 @@ import java.io.IOException; import java.io.InputStream; import java.security.SecureRandom; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Collection; -import java.util.Comparator; -import java.util.HashMap; -import java.util.HashSet; -import java.util.LinkedHashMap; -import java.util.List; -import java.util.ListIterator; -import java.util.Map; +import java.util.*; Review Comment: We have a wildcard import `import java.util.*;` I suspect this was added automatically by the IDE (very common!). While it works, explicit imports are preferred (better readability, avoids conflicts, and required by our Checkstyle config). Could you please replace it with specific imports and run: mvn clean install the above will report any checkstyle volations. -- 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]
