aboutsummaryrefslogtreecommitdiff
path: root/java/core/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/core/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java')
-rw-r--r--java/core/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/java/core/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java b/java/core/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java
index 30e87911..415b2cde 100644
--- a/java/core/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java
+++ b/java/core/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java
@@ -39,8 +39,8 @@ import java.util.ListIterator;
import java.util.RandomAccess;
/**
- * An implementation of {@link LazyStringList} that wraps another
- * {@link LazyStringList} such that it cannot be modified via the wrapper.
+ * An implementation of {@link LazyStringList} that wraps another {@link LazyStringList} such that
+ * it cannot be modified via the wrapper.
*
* @author jonp@google.com (Jon Perlow)
*/
@@ -57,7 +57,7 @@ public class UnmodifiableLazyStringList extends AbstractList<String>
public String get(int index) {
return list.get(index);
}
-
+
@Override
public Object getRaw(int index) {
return list.getRaw(index);
@@ -97,7 +97,7 @@ public class UnmodifiableLazyStringList extends AbstractList<String>
public void add(byte[] element) {
throw new UnsupportedOperationException();
}
-
+
@Override
public void set(int index, byte[] element) {
throw new UnsupportedOperationException();