Github user Ethanlm commented on a diff in the pull request: https://github.com/apache/storm/pull/2385#discussion_r147737087 --- Diff: storm-client/src/jvm/org/apache/storm/scheduler/SupervisorDetails.java --- @@ -17,12 +17,10 @@ */ package org.apache.storm.scheduler; -import java.util.Collection; -import java.util.HashSet; -import java.util.Set; -import java.util.Map; +import java.util.*; --- End diff -- I believe it's automatically done by intellj. You can change the preferences: Preference--> Editor-->Code Syte --> Java --> and then change "class count to use import with '*'" to a very large number, e.g. 999. Then you should never have this problem.
---