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

    https://github.com/apache/flink/pull/970#discussion_r36512186
  
    --- Diff: 
flink-core/src/main/java/org/apache/flink/api/common/functions/util/RuntimeUDFContext.java
 ---
    @@ -37,18 +37,17 @@
        private final HashMap<String, Object> initializedBroadcastVars = new 
HashMap<String, Object>();
        
        private final HashMap<String, List<?>> uninitializedBroadcastVars = new 
HashMap<String, List<?>>();
    -   
    -   
    +
        public RuntimeUDFContext(String name, int numParallelSubtasks, int 
subtaskIndex, ClassLoader userCodeClassLoader,
                                                        ExecutionConfig 
executionConfig, Map<String, Accumulator<?,?>> accumulators) {
    -           super(name, numParallelSubtasks, subtaskIndex, 
userCodeClassLoader, executionConfig, accumulators);
    +           this(name, numParallelSubtasks, subtaskIndex, 
userCodeClassLoader, executionConfig,
    +                           new HashMap<String, Future<Path>>(), 
accumulators);
        }
    -   
    +
        public RuntimeUDFContext(String name, int numParallelSubtasks, int 
subtaskIndex, ClassLoader userCodeClassLoader,
                                                        ExecutionConfig 
executionConfig, Map<String, Future<Path>> cpTasks, Map<String, 
Accumulator<?,?>> accumulators) {
                super(name, numParallelSubtasks, subtaskIndex, 
userCodeClassLoader, executionConfig, accumulators, cpTasks);
        }
    -   
    --- End diff --
    
    Here we have a few unnecessary formatting changes that just clutter the 
diff.


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