[ 
https://issues.apache.org/jira/browse/FLINK-6720?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16026869#comment-16026869
 ] 

ASF GitHub Bot commented on FLINK-6720:
---------------------------------------

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

    https://github.com/apache/flink/pull/3999#discussion_r118791491
  
    --- Diff: 
flink-java8/src/test/java/org/apache/flink/test/api/java/operators/lambdas/FilterITCase.java
 ---
    @@ -35,27 +38,38 @@
        public static DataSet<Tuple3<Integer, Long, String>> 
get3TupleDataSet(ExecutionEnvironment env) {
     
                List<Tuple3<Integer, Long, String>> data = new 
ArrayList<Tuple3<Integer, Long, String>>();
    -           data.add(new Tuple3<Integer, Long, String>(1,1l,"Hi"));
    -           data.add(new Tuple3<Integer, Long, String>(2,2l,"Hello"));
    -           data.add(new Tuple3<Integer, Long, String>(3,2l,"Hello world"));
    -           data.add(new Tuple3<Integer, Long, String>(4,3l,"Hello world, 
how are you?"));
    -           data.add(new Tuple3<Integer, Long, String>(5,3l,"I am fine."));
    -           data.add(new Tuple3<Integer, Long, String>(6,3l,"Luke 
Skywalker"));
    -           data.add(new Tuple3<Integer, Long, String>(7,4l,"Comment#1"));
    -           data.add(new Tuple3<Integer, Long, String>(8,4l,"Comment#2"));
    -           data.add(new Tuple3<Integer, Long, String>(9,4l,"Comment#3"));
    -           data.add(new Tuple3<Integer, Long, String>(10,4l,"Comment#4"));
    -           data.add(new Tuple3<Integer, Long, String>(11,5l,"Comment#5"));
    -           data.add(new Tuple3<Integer, Long, String>(12,5l,"Comment#6"));
    -           data.add(new Tuple3<Integer, Long, String>(13,5l,"Comment#7"));
    -           data.add(new Tuple3<Integer, Long, String>(14,5l,"Comment#8"));
    -           data.add(new Tuple3<Integer, Long, String>(15,5l,"Comment#9"));
    -           data.add(new Tuple3<Integer, Long, String>(16,6l,"Comment#10"));
    -           data.add(new Tuple3<Integer, Long, String>(17,6l,"Comment#11"));
    -           data.add(new Tuple3<Integer, Long, String>(18,6l,"Comment#12"));
    -           data.add(new Tuple3<Integer, Long, String>(19,6l,"Comment#13"));
    -           data.add(new Tuple3<Integer, Long, String>(20,6l,"Comment#14"));
    -           data.add(new Tuple3<Integer, Long, String>(21,6l,"Comment#15"));
    +           data.add(new Tuple3<>(1, 1L, "Hi"));
    +           data.add(new Tuple3<>(2, 2L, "Hello"));
    +           data.add(new Tuple3<>(3, 2L, "Hello world"));
    +           data.add(new Tuple3<>(4, 3L, "Hello world, how are you?"));
    +           data.add(new Tuple3<>(5, 3L, "I am fine."));
    +           data.add(new Tuple3<>(6, 3L, "Luke Skywalker"));
    +           data.add(new Tuple3<>(7, 4L, "Comment#1"));
    +           data.add(new Tuple3<>(8, 4L, "Comment#2"));
    +           data.add(new Tuple3<>(9, 4L,
    --- End diff --
    
    Formatting.


> Activate strict checkstyle for flink-java8
> ------------------------------------------
>
>                 Key: FLINK-6720
>                 URL: https://issues.apache.org/jira/browse/FLINK-6720
>             Project: Flink
>          Issue Type: Sub-task
>          Components: Java API
>            Reporter: Chesnay Schepler
>            Assignee: Chesnay Schepler
>             Fix For: 1.4.0
>
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Reply via email to