Skip to content

Commit

Permalink
Fix checkstyle violations for javadoc import
Browse files Browse the repository at this point in the history
  • Loading branch information
uce committed Dec 20, 2014
1 parent 137bb8e commit 55e5d4b
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
package org.apache.flink.runtime.jobgraph;

import org.apache.flink.runtime.executiongraph.ExecutionVertex;
import org.apache.flink.runtime.executiongraph.IntermediateResultPartition;

/**
* A distribution pattern determines, which sub tasks of a producing task are connected to which
Expand All @@ -30,14 +29,14 @@ public enum DistributionPattern {
/**
* Each producing sub task is connected to each sub task of the consuming task.
* <p>
* {@link ExecutionVertex#connectAllToAll(IntermediateResultPartition[], int)}
* {@link ExecutionVertex#connectAllToAll(org.apache.flink.runtime.executiongraph.IntermediateResultPartition[], int)}
*/
ALL_TO_ALL,

/**
* Each producing sub task is connected to one or more subtask(s) of the consuming task.
* <p>
* {@link ExecutionVertex#connectPointwise(IntermediateResultPartition[], int)}
* {@link ExecutionVertex#connectPointwise(org.apache.flink.runtime.executiongraph.IntermediateResultPartition[], int)}
*/
POINTWISE
}

0 comments on commit 55e5d4b

Please sign in to comment.