--- a/langtools/src/share/classes/com/sun/tools/javac/tree/TreeInfo.java Wed Dec 18 19:22:58 2013 +0000
+++ b/langtools/src/share/classes/com/sun/tools/javac/tree/TreeInfo.java Wed Dec 18 16:05:18 2013 -0500
@@ -49,8 +49,7 @@
* deletion without notice.</b>
*/
public class TreeInfo {
- protected static final Context.Key<TreeInfo> treeInfoKey =
- new Context.Key<TreeInfo>();
+ protected static final Context.Key<TreeInfo> treeInfoKey = new Context.Key<>();
public static TreeInfo instance(Context context) {
TreeInfo instance = context.get(treeInfoKey);
@@ -727,7 +726,7 @@
/** Return the types of a list of trees.
*/
public static List<Type> types(List<? extends JCTree> trees) {
- ListBuffer<Type> ts = new ListBuffer<Type>();
+ ListBuffer<Type> ts = new ListBuffer<>();
for (List<? extends JCTree> l = trees; l.nonEmpty(); l = l.tail)
ts.append(l.head.type);
return ts.toList();