X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=org.eclipse.linuxtools.ctf.core%2Fsrc%2Forg%2Feclipse%2Flinuxtools%2Fctf%2Fcore%2Fevent%2Ftypes%2FEnumDeclaration.java;h=a4919c7c1c2b56bc19f4a26e44e907a8bc6dc1b9;hb=3de23137c2bbc8027d8197a2edc2e077116abf3a;hp=0d2dda81fb472c5b98dc60e5d693cf21821c6fb7;hpb=f316372f276c05183db7d344368969cedbc07df2;p=deliverable%2Ftracecompass.git diff --git a/org.eclipse.linuxtools.ctf.core/src/org/eclipse/linuxtools/ctf/core/event/types/EnumDeclaration.java b/org.eclipse.linuxtools.ctf.core/src/org/eclipse/linuxtools/ctf/core/event/types/EnumDeclaration.java index 0d2dda81fb..a4919c7c1c 100644 --- a/org.eclipse.linuxtools.ctf.core/src/org/eclipse/linuxtools/ctf/core/event/types/EnumDeclaration.java +++ b/org.eclipse.linuxtools.ctf.core/src/org/eclipse/linuxtools/ctf/core/event/types/EnumDeclaration.java @@ -36,7 +36,7 @@ public class EnumDeclaration implements IDeclaration { private final EnumTable fTable = new EnumTable(); private final IntegerDeclaration fContainerType; - private final Set fLabels = new HashSet(); + private final Set fLabels = new HashSet<>(); // ------------------------------------------------------------------------ // Constructors @@ -129,7 +129,7 @@ public class EnumDeclaration implements IDeclaration { */ private class EnumTable { - private final List ranges = new LinkedList(); + private final List ranges = new LinkedList<>(); public EnumTable() { }