ctf: fix modifier order of @Nullable annotation
authorMatthew Khouzam <matthew.khouzam@ericsson.com>
Thu, 17 Dec 2015 17:24:19 +0000 (12:24 -0500)
committerMatthew Khouzam <matthew.khouzam@ericsson.com>
Fri, 18 Dec 2015 20:54:07 +0000 (15:54 -0500)
Change-Id: Ib5f40b243b6ecae25fda50dd09ef7c8df16e36f7
Signed-off-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
Reviewed-on: https://git.eclipse.org/r/62951
Reviewed-by: Hudson CI
Reviewed-by: Alexandre Montplaisir <alexmonthy@efficios.com>
ctf/org.eclipse.tracecompass.ctf.core/src/org/eclipse/tracecompass/internal/ctf/core/trace/StreamInputPacketIndexEntry.java

index c85db80e8f87f8a7b20afbfb48a0affef5743739..5da4c2b3cf7308371a00ac9fdb77dd067a562695 100644 (file)
@@ -173,7 +173,7 @@ public class StreamInputPacketIndexEntry implements ICTFPacketDescriptor {
         fLostEvents = computeLostEvents(lostSoFar);
     }
 
-    private @NonNull static ImmutableMap<String, Object> computeAttributeMap(StructDefinition streamPacketContextDef) {
+    private static @NonNull ImmutableMap<String, Object> computeAttributeMap(StructDefinition streamPacketContextDef) {
         Builder<String, Object> attributeBuilder = ImmutableMap.<String, Object> builder();
         for (String field : streamPacketContextDef.getDeclaration().getFieldsList()) {
             IDefinition id = streamPacketContextDef.lookupDefinition(field);
This page took 0.02566 seconds and 5 git commands to generate.