diff --git a/flink-clients/src/main/java/org/apache/flink/client/CliFrontend.java b/flink-clients/src/main/java/org/apache/flink/client/CliFrontend.java index c638894d22c75adb6ebe7bb7c728466d0ba7f307..5485030dcdb8d37edc80f8f8e81d2117a92be855 100644 --- a/flink-clients/src/main/java/org/apache/flink/client/CliFrontend.java +++ b/flink-clients/src/main/java/org/apache/flink/client/CliFrontend.java @@ -696,7 +696,8 @@ public class CliFrontend { * Creates a Packaged program from the given command line options. * * @return A PackagedProgram (upon success) - * @throws java.io.FileNotFoundException, org.apache.flink.client.program.ProgramInvocationException, java.lang.Throwable + * @throws java.io.FileNotFoundException + * @throws org.apache.flink.client.program.ProgramInvocationException */ protected PackagedProgram buildProgram(ProgramOptions options) throws FileNotFoundException, ProgramInvocationException diff --git a/flink-contrib/flink-storm-examples/src/main/java/org/apache/flink/storm/excamation/ExclamationLocal.java b/flink-contrib/flink-storm-examples/src/main/java/org/apache/flink/storm/excamation/ExclamationLocal.java index 985cd68fce8fb42e27bea163de189d8e12143e2e..56a01252e38622809eca51f9887f506e20f80723 100644 --- a/flink-contrib/flink-storm-examples/src/main/java/org/apache/flink/storm/excamation/ExclamationLocal.java +++ b/flink-contrib/flink-storm-examples/src/main/java/org/apache/flink/storm/excamation/ExclamationLocal.java @@ -28,19 +28,16 @@ import org.apache.flink.storm.excamation.operators.ExclamationBolt; * Implements the "Exclamation" program that attaches five exclamation mark to every line of a text files in a streaming * fashion. The program is constructed as a regular {@link backtype.storm.generated.StormTopology} and submitted to * Flink for execution in the same way as to a Storm {@link backtype.storm.LocalCluster}. - *

+ *

* This example shows how to run program directly within Java, thus it cannot be used to submit a * {@link backtype.storm.generated.StormTopology} via Flink command line clients (ie, bin/flink). - *

- *

+ *

* The input is a plain text file with lines separated by newline characters. - *

- *

- * Usage: ExclamationLocal <text path> <result path>
+ *

+ * Usage: ExclamationLocal <text path> <result path>
* If no parameters are provided, the program is run with default data from * {@link org.apache.flink.examples.java.wordcount.util.WordCountData}. - *

- *

+ *

* This example shows how to: *