aboutsummaryrefslogtreecommitdiffhomepage
path: root/java
diff options
context:
space:
mode:
authorGravatar Patrick Strawderman <patrick@kilink.net>2016-09-16 14:54:58 -0700
committerGravatar GitHub <noreply@github.com>2016-09-16 14:54:58 -0700
commit9ac84f8f3fea9797953a8c738b7fae652d968637 (patch)
treed3514a7d8b41408b25bd8936f431a19a4b6161dd /java
parent3b001ca6ba6fb51f5e55b1596fb3ce09ee9981e8 (diff)
Fix erroneous comment regarding String.substring
Since Java 7, Strings produced with String.substring do not share byte arrays.
Diffstat (limited to 'java')
-rw-r--r--java/core/src/main/java/com/google/protobuf/ByteString.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/java/core/src/main/java/com/google/protobuf/ByteString.java b/java/core/src/main/java/com/google/protobuf/ByteString.java
index 49653899..3f3f9f3c 100644
--- a/java/core/src/main/java/com/google/protobuf/ByteString.java
+++ b/java/core/src/main/java/com/google/protobuf/ByteString.java
@@ -52,9 +52,9 @@ import java.util.NoSuchElementException;
/**
* Immutable sequence of bytes. Substring is supported by sharing the reference
- * to the immutable underlying bytes, as with {@link String}. Concatenation is
- * likewise supported without copying (long strings) by building a tree of
- * pieces in {@link RopeByteString}.
+ * to the immutable underlying bytes. Concatenation is likewise supported
+ * without copying (long strings) by building a tree of pieces in
+ * {@link RopeByteString}.
* <p>
* Like {@link String}, the contents of a {@link ByteString} can never be
* observed to change, not even in the presence of a data race or incorrect