tmf: Switch tmf.ui to Java 7 + fix warnings
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / internal / tmf / ui / project / wizards / tracepkg / AbstractTracePackageWizardPage.java
index e8d3d08369f43e144ff669be022787e0c14127f8..c30d201e858fd63dacdfdddd66e78cdef5bee0eb 100644 (file)
@@ -481,7 +481,7 @@ abstract public class AbstractTracePackageWizardPage extends WizardPage {
     }
 
     private static String[] addToHistory(String[] history, String newEntry) {
-        ArrayList<String> l = new ArrayList<String>(Arrays.asList(history));
+        ArrayList<String> l = new ArrayList<>(Arrays.asList(history));
         addToHistory(l, newEntry);
         String[] r = new String[l.size()];
         l.toArray(r);
This page took 0.039173 seconds and 5 git commands to generate.