浏览代码

Merge pull request #2835 from pherl/javaep

Suppress the last unchecked warning.
Jisi Liu 8 年之前
父节点
当前提交
ddfc86b1f7
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      java/core/src/test/java/com/google/protobuf/LazyStringArrayListTest.java

+ 1 - 0
java/core/src/test/java/com/google/protobuf/LazyStringArrayListTest.java

@@ -281,6 +281,7 @@ public class LazyStringArrayListTest extends TestCase {
     assertGenericListImmutable(byteArrayList, byteArrayList.get(0));
   }
   
+  @SuppressWarnings("unchecked")
   private static <T> void assertGenericListImmutable(List<T> list, T value) {
     try {
       list.add(value);