ust.core: add NON-NLS to toString of UstDebugInfoBinaryFile
authorMatthew Khouzam <matthew.khouzam@ericsson.com>
Thu, 8 Sep 2016 13:22:30 +0000 (09:22 -0400)
committerMatthew Khouzam <matthew.khouzam@ericsson.com>
Thu, 8 Sep 2016 16:43:36 +0000 (12:43 -0400)
This removes 4 warnings.

Change-Id: I5fe5a5913f14d9bf521ed20f82812e4716a038f5
Signed-off-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
Reviewed-on: https://git.eclipse.org/r/80695
Reviewed-by: Genevieve Bastien <gbastien+lttng@versatic.net>
Tested-by: Genevieve Bastien <gbastien+lttng@versatic.net>
Reviewed-by: Hudson CI
lttng/org.eclipse.tracecompass.lttng2.ust.core/src/org/eclipse/tracecompass/lttng2/ust/core/analysis/debuginfo/UstDebugInfoBinaryFile.java

index b8556fd8daef84d1d32694e68be2e2fa2a0e53a1..3a189c56dff4d1ffb39b2ea33df6d9e49888292e 100644 (file)
@@ -96,10 +96,10 @@ public class UstDebugInfoBinaryFile implements Comparable<UstDebugInfoBinaryFile
     @Override
     public String toString() {
         return com.google.common.base.Objects.toStringHelper(this)
-            .add("path", fFilePath)
-            .add("build_id", fBuildId)
-            .add("debug_link", fDebugLink)
-            .add("is_pic", fIsPic)
+            .add("path", fFilePath) //$NON-NLS-1$
+            .add("build_id", fBuildId) //$NON-NLS-1$
+            .add("debug_link", fDebugLink) //$NON-NLS-1$
+            .add("is_pic", fIsPic) //$NON-NLS-1$
             .toString();
     }
 
This page took 0.027554 seconds and 5 git commands to generate.