2010-11-09 Francois Chouinard <fchouinard@gmail.com> Contribution for Bug315307
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / parsers / custom / CustomTxtTrace.java
index 7901d556f7d46e1dc57cf6c1bb053416766484f2..4bb339b45854cc2bf323cac89479d0b100296d21 100644 (file)
@@ -60,7 +60,7 @@ public class CustomTxtTrace extends TmfTrace<CustomTxtEvent> {
             return context;\r
         }\r
         try {\r
-            RandomAccessFile raFile = new RandomAccessFile(getPath(), "r");\r
+            RandomAccessFile raFile = new RandomAccessFile(getPath(), "r"); //$NON-NLS-1$\r
             if (location != null && location.getLocation() instanceof Long) {\r
                 raFile.seek((Long)location.getLocation());\r
             }\r
@@ -258,7 +258,7 @@ public class CustomTxtTrace extends TmfTrace<CustomTxtEvent> {
     }\r
     \r
     public CustomTxtEvent parseFirstLine(CustomTxtTraceContext context) {\r
-        CustomTxtEvent event = new CustomTxtEvent(fDefinition, TmfTimestamp.Zero, new TmfEventSource(""), new TmfEventType(fDefinition.definitionName, new String[0]), new TmfEventReference(""));\r
+        CustomTxtEvent event = new CustomTxtEvent(fDefinition, TmfTimestamp.Zero, new TmfEventSource(""), new TmfEventType(fDefinition.definitionName, new String[0]), new TmfEventReference("")); //$NON-NLS-1$ //$NON-NLS-2$\r
         event.processGroups(context.inputLine, context.firstLineMatcher);\r
         return event;\r
     }\r
This page took 0.024028 seconds and 5 git commands to generate.