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

    https://github.com/apache/storm/pull/723#discussion_r38822071
  
    --- Diff: 
storm-core/src/jvm/backtype/storm/drpc/LinearDRPCTopologyBuilder.java ---
    @@ -174,13 +174,12 @@ private static String boltId(int index) {
         private static class Component {
             public IRichBolt bolt;
             public int parallelism;
    -        public List<Map> componentConfs;
    +        public List<Map<String, Object>> componentConfs = new 
ArrayList<>();
             public List<InputDeclaration> declarations = new 
ArrayList<InputDeclaration>();
             
             public Component(IRichBolt bolt, int parallelism) {
                 this.bolt = bolt;
                 this.parallelism = parallelism;
    -            this.componentConfs = new ArrayList();
    --- End diff --
    
    I moved this to line 177 above to make it slightly cleaner


---
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