| Index: third_party/protobuf/java/core/src/test/java/com/google/protobuf/SmallSortedMapTest.java
|
| diff --git a/third_party/protobuf/java/src/test/java/com/google/protobuf/SmallSortedMapTest.java b/third_party/protobuf/java/core/src/test/java/com/google/protobuf/SmallSortedMapTest.java
|
| similarity index 99%
|
| rename from third_party/protobuf/java/src/test/java/com/google/protobuf/SmallSortedMapTest.java
|
| rename to third_party/protobuf/java/core/src/test/java/com/google/protobuf/SmallSortedMapTest.java
|
| index 366086d30c9e7ee5a2473baa203ea23be7524be3..e96ecd65d552392d17f4e915f1bdbe0f243fd7c0 100644
|
| --- a/third_party/protobuf/java/src/test/java/com/google/protobuf/SmallSortedMapTest.java
|
| +++ b/third_party/protobuf/java/core/src/test/java/com/google/protobuf/SmallSortedMapTest.java
|
| @@ -56,14 +56,17 @@ public class SmallSortedMapTest extends TestCase {
|
| this.value = value;
|
| }
|
|
|
| + @Override
|
| public K getKey() {
|
| return key;
|
| }
|
|
|
| + @Override
|
| public V getValue() {
|
| return value;
|
| }
|
|
|
| + @Override
|
| public V setValue(V value) {
|
| V oldValue = this.value;
|
| this.value = value;
|
|
|