aboutsummaryrefslogtreecommitdiff
path: root/java/core/src/main/java/com/google/protobuf/ByteOutput.java
diff options
context:
space:
mode:
authorFeng Xiao <xfxyjwf@gmail.com>2016-07-18 15:56:33 -0700
committerFeng Xiao <xfxyjwf@gmail.com>2016-07-18 15:59:09 -0700
commitfa527024088bd3d8f3deb04aef47b4d0e2c84793 (patch)
treea5c08bd6ede06b1a8bdeee611b81204145ce3e7e /java/core/src/main/java/com/google/protobuf/ByteOutput.java
parent2078f614e46e78ed425da255fe0c12ced58e3c15 (diff)
downloadprotobuf-fa527024088bd3d8f3deb04aef47b4d0e2c84793.tar.gz
protobuf-fa527024088bd3d8f3deb04aef47b4d0e2c84793.tar.bz2
protobuf-fa527024088bd3d8f3deb04aef47b4d0e2c84793.zip
Include javadoc/source in Java release packages.
Also fixed javadoc errors. [ci skip]
Diffstat (limited to 'java/core/src/main/java/com/google/protobuf/ByteOutput.java')
-rw-r--r--java/core/src/main/java/com/google/protobuf/ByteOutput.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/core/src/main/java/com/google/protobuf/ByteOutput.java b/java/core/src/main/java/com/google/protobuf/ByteOutput.java
index 8b7b04c8..ee588753 100644
--- a/java/core/src/main/java/com/google/protobuf/ByteOutput.java
+++ b/java/core/src/main/java/com/google/protobuf/ByteOutput.java
@@ -37,11 +37,11 @@ import java.nio.ByteBuffer;
* An output target for raw bytes. This interface provides semantics that support two types of
* writing:
*
- * <p/><b>Traditional write operations:</b>
+ * <p><b>Traditional write operations:</b>
* (as defined by {@link java.io.OutputStream}) where the target method is responsible for either
* copying the data or completing the write before returning from the method call.
*
- * <p/><b>Lazy write operations:</b> where the caller guarantees that it will never modify the
+ * <p><b>Lazy write operations:</b> where the caller guarantees that it will never modify the
* provided buffer and it can therefore be considered immutable. The target method is free to
* maintain a reference to the buffer beyond the scope of the method call (e.g. until the write
* operation completes).