Github user asdf2014 commented on a diff in the pull request:

    https://github.com/apache/flink/pull/4472#discussion_r132358492
  
    --- Diff: 
flink-runtime-web/src/main/java/org/apache/flink/runtime/webmonitor/metrics/MetricStore.java
 ---
    @@ -24,8 +24,8 @@
     import org.slf4j.Logger;
     import org.slf4j.LoggerFactory;
     
    -import java.util.HashMap;
    -import java.util.HashSet;
    +import java.util.concurrent.ConcurrentHashMap;
    +import java.util.concurrent.ConcurrentSkipListSet;
    --- End diff --
    
    Hi, @nicochen . Thank you for the `PR`. There is a import order problem, 
you should change the order of those import as the following code. Otherwise it 
will not pass the `checkstyle` system.
    ```java
    import java.util.Map;
    import java.util.Set;
    import java.util.concurrent.ConcurrentHashMap;
    import java.util.concurrent.ConcurrentSkipListSet;
    ```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to