aboutsummaryrefslogtreecommitdiffhomepage
path: root/java/core/src/main/java/com/google/protobuf/RopeByteString.java
diff options
context:
space:
mode:
authorGravatar Dongjoon Hyun <dongjoon@apache.org>2016-01-14 22:12:03 -0800
committerGravatar Dongjoon Hyun <dongjoon@apache.org>2016-02-03 15:27:27 -0800
commit7a9040fe7fb2fc436fab15ebd9373de88084d656 (patch)
tree00fd6e6fbd0bb65ddcdd5ee37c8dfbd0497fd685 /java/core/src/main/java/com/google/protobuf/RopeByteString.java
parenteb1d156d74fc4742175d6c143e5747772e44a4bb (diff)
Remove redundant `the` in comments.
Diffstat (limited to 'java/core/src/main/java/com/google/protobuf/RopeByteString.java')
-rw-r--r--java/core/src/main/java/com/google/protobuf/RopeByteString.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/core/src/main/java/com/google/protobuf/RopeByteString.java b/java/core/src/main/java/com/google/protobuf/RopeByteString.java
index 469c90c2..8badfabd 100644
--- a/java/core/src/main/java/com/google/protobuf/RopeByteString.java
+++ b/java/core/src/main/java/com/google/protobuf/RopeByteString.java
@@ -187,7 +187,7 @@ final class RopeByteString extends ByteString {
&& leftRope.getTreeDepth() > right.getTreeDepth()) {
// Typically for concatenate-built strings the left-side is deeper than
// the right. This is our final attempt to concatenate without
- // increasing the tree depth. We'll redo the the node on the RHS. This
+ // increasing the tree depth. We'll redo the node on the RHS. This
// is yet another optimization for building the string by repeatedly
// concatenating on the right.
ByteString newRight = new RopeByteString(leftRope.right, right);