You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by sr...@apache.org on 2015/10/29 15:11:07 UTC

spark git commit: [SPARK-11388][BUILD] Fix self closing tags.

Repository: spark
Updated Branches:
  refs/heads/master f304f9c9a -> 3bb2a8d75


[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 <hv...@questtec.nl>

Closes #9339 from hvanhovell/SPARK-11388.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/3bb2a8d7
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/3bb2a8d7
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/3bb2a8d7

Branch: refs/heads/master
Commit: 3bb2a8d7508b507edfcc21bd20912b0ff4a0a248
Parents: f304f9c
Author: Herman van Hovell <hv...@questtec.nl>
Authored: Thu Oct 29 15:11:00 2015 +0100
Committer: Sean Owen <so...@cloudera.com>
Committed: Thu Oct 29 15:11:00 2015 +0100

----------------------------------------------------------------------
 .../main/java/org/apache/spark/launcher/SparkAppHandle.java  | 4 ++--
 .../main/java/org/apache/spark/launcher/SparkLauncher.java   | 8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/3bb2a8d7/launcher/src/main/java/org/apache/spark/launcher/SparkAppHandle.java
----------------------------------------------------------------------
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 2896a91..13dd9f1 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);
 

http://git-wip-us.apache.org/repos/asf/spark/blob/3bb2a8d7/launcher/src/main/java/org/apache/spark/launcher/SparkLauncher.java
----------------------------------------------------------------------
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 5d74b37..dd1c93a 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


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org