Fix javadoc formatting

PiperOrigin-RevId: 341051348
This commit is contained in:
claincly 2020-11-06 16:13:23 +00:00 committed by Andrew Lewis
parent 92ec1ab628
commit 8b5ecdb98d

View File

@ -31,20 +31,15 @@ import java.net.SocketException;
/** A UDP {@link DataSource}. */
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 UdpDataSourceException(IOException 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;
/** The default socket timeout, in milliseconds. */
@ -174,5 +169,4 @@ public final class UdpDataSource extends BaseDataSource {
transferEnded();
}
}
}