tmf: Switch tmf.ui to Java 7 + fix warnings
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / viewers / statistics / model / TmfBaseColumnDataProvider.java
index 004161b813f656cb309b1de789b8f4ad1b0cd3ae..4b3d045d4894a81dbeb4c3f898ebacb321ae221d 100755 (executable)
@@ -74,14 +74,14 @@ public class TmfBaseColumnDataProvider implements ITmfColumnDataProvider {
     /**
      * Level for which statistics should not be displayed.
      */
-    protected Set<String> fFolderLevels = new HashSet<String>(Arrays.asList(new String[] { "Event Types" })); //$NON-NLS-1$
+    protected Set<String> fFolderLevels = new HashSet<>(Arrays.asList(new String[] { "Event Types" })); //$NON-NLS-1$
 
     /**
      * Create basic columns to represent the statistics data
      */
     public TmfBaseColumnDataProvider() {
         /* List that will be used to create the table. */
-        fColumnData = new Vector<TmfBaseColumnData>();
+        fColumnData = new Vector<>();
         /* Column showing the name of the events and its level in the tree */
         fColumnData.add(new TmfBaseColumnData(LEVEL_COLUMN, 200, SWT.LEFT, LEVEL_COLUMN_TIP, new ColumnLabelProvider() {
             @Override
This page took 0.024419 seconds and 5 git commands to generate.