tmf: Add generics to ITmfEventAspect
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.core.tests / stubs / org / eclipse / tracecompass / tmf / tests / stubs / trace / text / SyslogTrace.java
index 68547d4bb0c360e339fc6533fffa3b2f3da3f71b..b5df50009e44bd28ce30b56a2f8c8a21321550ec 100644 (file)
@@ -64,7 +64,7 @@ public class SyslogTrace extends TextTrace<SyslogEvent> {
     }
 
     /** The event aspects */
-    public static final @NonNull Collection<ITmfEventAspect> ASPECTS =
+    public static final @NonNull Collection<ITmfEventAspect<?>> ASPECTS =
             ImmutableList.of(
                     ITmfEventAspect.BaseAspects.TIMESTAMP,
                     new TmfContentFieldAspect(Field.HOST, Field.HOST),
@@ -140,7 +140,7 @@ public class SyslogTrace extends TextTrace<SyslogEvent> {
     }
 
     @Override
-    public Iterable<ITmfEventAspect> getEventAspects() {
+    public Iterable<ITmfEventAspect<?>> getEventAspects() {
         return ASPECTS;
     }
 }
This page took 0.024567 seconds and 5 git commands to generate.