2010-11-09 Francois Chouinard <fchouinard@gmail.com> Contribution for Bug315307
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.ui / src / org / eclipse / linuxtools / lttng / ui / views / resources / model / ResourceContainer.java
index b7203be227c8820bbda8a33ded5b77a88207f71f..77bedcaf58479ee877bd3fb4a18936de60122f61 100644 (file)
@@ -185,7 +185,7 @@ class ResourceKey {
                }
         }
         else {
-               TraceDebug.debug("ERROR : The given key is not of the type ProcessKey!" + obj.getClass().toString());
+               TraceDebug.debug("ERROR : The given key is not of the type ProcessKey!" + obj.getClass().toString()); //$NON-NLS-1$
         }
         
         return isSame;
@@ -227,7 +227,8 @@ class ResourceKey {
     
     
     @Override
-    public String toString() {
+       @SuppressWarnings("nls")
+       public String toString() {
         if ( valueRef != null ) {
             return (valueRef.getResourceId().toString() + ":" + valueRef.getTraceId().toString() + ":" + valueRef.getType().toString());
         }
This page took 0.024082 seconds and 5 git commands to generate.