langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/util/ListBuffer.java
changeset 42828 cce89649f958
parent 29291 076c277565f7
--- a/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/util/ListBuffer.java	Fri Dec 16 15:27:34 2016 +0000
+++ b/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/util/ListBuffer.java	Fri Dec 16 15:27:47 2016 +0000
@@ -103,10 +103,10 @@
         if (elems.nonEmpty()) {
             List<A> orig = elems;
 
-            elems = last = List.<A>of(orig.head);
+            elems = last = List.of(orig.head);
 
             while ((orig = orig.tail).nonEmpty()) {
-                last.tail = List.<A>of(orig.head);
+                last.tail = List.of(orig.head);
                 last = last.tail;
             }
         }
@@ -126,7 +126,7 @@
     public ListBuffer<A> append(A x) {
         Assert.checkNonNull(x);
         if (shared) copy();
-        List<A> newLast = List.<A>of(x);
+        List<A> newLast = List.of(x);
         if (last != null) {
             last.tail = newLast;
             last = newLast;