aboutsummaryrefslogtreecommitdiff
path: root/launcher/src
diff options
context:
space:
mode:
authorHerman van Hovell <hvanhovell@questtec.nl>2015-10-29 15:11:00 +0100
committerSean Owen <sowen@cloudera.com>2015-10-29 15:11:00 +0100
commit3bb2a8d7508b507edfcc21bd20912b0ff4a0a248 (patch)
tree9a810f3b8a172161dece2e6e324abfec70b092f1 /launcher/src
parentf304f9c9a1c954b3b5786f90bb13f543637d3192 (diff)
downloadspark-3bb2a8d7508b507edfcc21bd20912b0ff4a0a248.tar.gz
spark-3bb2a8d7508b507edfcc21bd20912b0ff4a0a248.tar.bz2
spark-3bb2a8d7508b507edfcc21bd20912b0ff4a0a248.zip
[SPARK-11388][BUILD] Fix self closing tags.
Java 8 javadoc does not like self closing tags: ```<p/>```, ```<br/>```, ... This PR fixes those. Author: Herman van Hovell <hvanhovell@questtec.nl> Closes #9339 from hvanhovell/SPARK-11388.
Diffstat (limited to 'launcher/src')
-rw-r--r--launcher/src/main/java/org/apache/spark/launcher/SparkAppHandle.java4
-rw-r--r--launcher/src/main/java/org/apache/spark/launcher/SparkLauncher.java8
2 files changed, 6 insertions, 6 deletions
diff --git a/launcher/src/main/java/org/apache/spark/launcher/SparkAppHandle.java b/launcher/src/main/java/org/apache/spark/launcher/SparkAppHandle.java
index 2896a91d5e..13dd9f1739 100644
--- a/launcher/src/main/java/org/apache/spark/launcher/SparkAppHandle.java
+++ b/launcher/src/main/java/org/apache/spark/launcher/SparkAppHandle.java
@@ -19,7 +19,7 @@ package org.apache.spark.launcher;
/**
* A handle to a running Spark application.
- * <p/>
+ * <p>
* Provides runtime information about the underlying Spark application, and actions to control it.
*
* @since 1.6.0
@@ -110,7 +110,7 @@ public interface SparkAppHandle {
* Callback for changes in the handle's state.
*
* @param handle The updated handle.
- * @see {@link SparkAppHandle#getState()}
+ * @see SparkAppHandle#getState()
*/
void stateChanged(SparkAppHandle handle);
diff --git a/launcher/src/main/java/org/apache/spark/launcher/SparkLauncher.java b/launcher/src/main/java/org/apache/spark/launcher/SparkLauncher.java
index 5d74b37033..dd1c93af6c 100644
--- a/launcher/src/main/java/org/apache/spark/launcher/SparkLauncher.java
+++ b/launcher/src/main/java/org/apache/spark/launcher/SparkLauncher.java
@@ -350,7 +350,7 @@ public class SparkLauncher {
/**
* Launches a sub-process that will start the configured Spark application.
- * <p/>
+ * <p>
* The {@link #startApplication(SparkAppHandle.Listener...)} method is preferred when launching
* Spark, since it provides better control of the child application.
*
@@ -362,16 +362,16 @@ public class SparkLauncher {
/**
* Starts a Spark application.
- * <p/>
+ * <p>
* This method returns a handle that provides information about the running application and can
* be used to do basic interaction with it.
- * <p/>
+ * <p>
* The returned handle assumes that the application will instantiate a single SparkContext
* during its lifetime. Once that context reports a final state (one that indicates the
* SparkContext has stopped), the handle will not perform new state transitions, so anything
* that happens after that cannot be monitored. If the underlying application is launched as
* a child process, {@link SparkAppHandle#kill()} can still be used to kill the child process.
- * <p/>
+ * <p>
* Currently, all applications are launched as child processes. The child's stdout and stderr
* are merged and written to a logger (see <code>java.util.logging</code>). The logger's name
* can be defined by setting {@link #CHILD_PROCESS_LOGGER_NAME} in the app's configuration. If