Skip to content
Snippets Groups Projects
Commit 0caade63 authored by Prashant Sharma's avatar Prashant Sharma Committed by Sean Owen
Browse files

[SPARK-20027][DOCS] Compilation fix in java docs.

## What changes were proposed in this pull request?

During build/sbt publish-local, build breaks due to javadocs errors. This patch fixes those errors.

## How was this patch tested?

Tested by running the sbt build.

Author: Prashant Sharma <prashsh1@in.ibm.com>

Closes #17358 from ScrapCodes/docs-fix.
parent facfd608
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@ import org.apache.spark.network.protocol.Encoders;
/**
* The client challenge message, used to initiate authentication.
*
* @see README.md
* Please see crypto/README.md for more details of implementation.
*/
public class ClientChallenge implements Encodable {
/** Serialization tag used to catch incorrect payloads. */
......
......@@ -28,7 +28,7 @@ import org.apache.spark.network.protocol.Encoders;
/**
* Server's response to client's challenge.
*
* @see README.md
* Please see crypto/README.md for more details.
*/
public class ServerResponse implements Encodable {
/** Serialization tag used to catch incorrect payloads. */
......
......@@ -863,7 +863,7 @@ public final class UTF8String implements Comparable<UTF8String>, Externalizable,
* This is done solely for better performance and is not expected to be used by end users.
*
* {@link LongWrapper} could have been used here but using `int` directly save the extra cost of
* conversion from `long` -> `int`
* conversion from `long` to `int`
*/
public static class IntWrapper {
public int value = 0;
......
......@@ -28,7 +28,8 @@ import org.apache.spark.sql.streaming.KeyedState;
* ::Experimental::
* Base interface for a map function used in
* {@link org.apache.spark.sql.KeyValueGroupedDataset#flatMapGroupsWithState(
* FlatMapGroupsWithStateFunction, org.apache.spark.sql.Encoder, org.apache.spark.sql.Encoder)}.
* FlatMapGroupsWithStateFunction, org.apache.spark.sql.streaming.OutputMode,
* org.apache.spark.sql.Encoder, org.apache.spark.sql.Encoder)}
* @since 2.1.1
*/
@Experimental
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment