Github user greghogan commented on a diff in the pull request: https://github.com/apache/flink/pull/1938#discussion_r61614176 --- Diff: flink-java/src/main/java/org/apache/flink/api/java/utils/DataSetUtils.java --- @@ -104,7 +104,10 @@ public void open(Configuration parameters) throws Exception { @Override public List<Tuple2<Integer, Long>> initializeBroadcastVariable(Iterable<Tuple2<Integer, Long>> data) { // sort the list by task id to calculate the correct offset - List<Tuple2<Integer, Long>> sortedData = Lists.newArrayList(data); + List<Tuple2<Integer, Long>> sortedData = new ArrayList(); --- End diff -- Add the diamond operator to ArrayList?
--- 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. ---