X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=org.eclipse.linuxtools.tmf.ui%2Fsrc%2Forg%2Feclipse%2Flinuxtools%2Ftmf%2Fui%2Fviewers%2Fstatistics%2Fmodel%2FTmfBaseColumnDataProvider.java;h=4b3d045d4894a81dbeb4c3f898ebacb321ae221d;hb=507b1336fb237092ac81b047139e42677e5b61ac;hp=004161b813f656cb309b1de789b8f4ad1b0cd3ae;hpb=7588c8108899de5298e62baae26a23eec89cfb03;p=deliverable%2Ftracecompass.git diff --git a/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/tmf/ui/viewers/statistics/model/TmfBaseColumnDataProvider.java b/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/tmf/ui/viewers/statistics/model/TmfBaseColumnDataProvider.java index 004161b813..4b3d045d48 100755 --- a/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/tmf/ui/viewers/statistics/model/TmfBaseColumnDataProvider.java +++ b/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/tmf/ui/viewers/statistics/model/TmfBaseColumnDataProvider.java @@ -74,14 +74,14 @@ public class TmfBaseColumnDataProvider implements ITmfColumnDataProvider { /** * Level for which statistics should not be displayed. */ - protected Set fFolderLevels = new HashSet(Arrays.asList(new String[] { "Event Types" })); //$NON-NLS-1$ + protected Set 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(); + 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