2010-11-09 Francois Chouinard <fchouinard@gmail.com> Contribution for Bug315307
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf / src / org / eclipse / linuxtools / tmf / experiment / TmfExperiment.java
index e18b994abe29e3bebd600969d28b221e7d2c8d21..63c096c2d26f80bc207750858efada088db1c6b9 100644 (file)
@@ -124,7 +124,7 @@ public class TmfExperiment<T extends TmfEvent> extends TmfEventProvider<T> imple
      * @param other
      */
     public TmfExperiment(TmfExperiment<T> other) {
-       super(other.getName() + "(clone)", other.fType);
+       super(other.getName() + "(clone)", other.fType); //$NON-NLS-1$
        
        fEpoch         = other.fEpoch;
        fIndexPageSize = other.fIndexPageSize;
@@ -609,6 +609,7 @@ public class TmfExperiment<T extends TmfEvent> extends TmfEventProvider<T> imple
         * @see java.lang.Object#toString()
         */
        @Override
+    @SuppressWarnings("nls")
        public String toString() {
                return "[TmfExperiment (" + getName() + ")]";
        }
This page took 0.024324 seconds and 5 git commands to generate.