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

    https://github.com/apache/storm/pull/2744#discussion_r225509106
  
    --- Diff: storm-client/src/jvm/org/apache/storm/tuple/Values.java ---
    @@ -23,9 +23,13 @@ public Values() {
         }
     
         public Values(Object... vals) {
    -        super(vals.length);
    -        for (Object o : vals) {
    -            add(o);
    +        super(vals != null ? vals.length : 0);
    --- End diff --
    
    Making change


---

Reply via email to