Commit 8b5ecdb9 by claincly Committed by Andrew Lewis

Fix javadoc formatting

PiperOrigin-RevId: 341051348
parent 92ec1ab6
...@@ -31,20 +31,15 @@ import java.net.SocketException; ...@@ -31,20 +31,15 @@ import java.net.SocketException;
/** A UDP {@link DataSource}. */ /** A UDP {@link DataSource}. */
public final class UdpDataSource extends BaseDataSource { public final class UdpDataSource extends BaseDataSource {
/** /** Thrown when an error is encountered when trying to read from a {@link UdpDataSource}. */
* Thrown when an error is encountered when trying to read from a {@link UdpDataSource}.
*/
public static final class UdpDataSourceException extends IOException { public static final class UdpDataSourceException extends IOException {
public UdpDataSourceException(IOException cause) { public UdpDataSourceException(IOException cause) {
super(cause); super(cause);
} }
} }
/** /** The default maximum datagram packet size, in bytes. */
* The default maximum datagram packet size, in bytes.
*/
public static final int DEFAULT_MAX_PACKET_SIZE = 2000; public static final int DEFAULT_MAX_PACKET_SIZE = 2000;
/** The default socket timeout, in milliseconds. */ /** The default socket timeout, in milliseconds. */
...@@ -174,5 +169,4 @@ public final class UdpDataSource extends BaseDataSource { ...@@ -174,5 +169,4 @@ public final class UdpDataSource extends BaseDataSource {
transferEnded(); transferEnded();
} }
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment