ctf: Disable NLS warnings in test plugin
[deliverable/tracecompass.git] / org.eclipse.linuxtools.ctf.core.tests / src / org / eclipse / linuxtools / ctf / core / tests / event / CTFCallsiteTest.java
index 37451940c3ddec2baadc31ba777bf02dc44fd561..d1aa37a4f5a7b788fd2822ce6a4f8739d4f7747d 100644 (file)
@@ -46,7 +46,6 @@ public class CTFCallsiteTest {
         // Add additional tear down code here
     }
 
-    @SuppressWarnings("nls")
     private static CTFCallsite GenerateCS(long ip){
         return new CTFCallsite("event name", "func name", ip, "file.java", 1);
     }
@@ -92,7 +91,7 @@ public class CTFCallsiteTest {
     @Test
     public void toStringTest(){
         CTFCallsite cs = GenerateCS(0x01);
-        assertEquals("file.java/func name:1", cs.toString()); //$NON-NLS-1$
+        assertEquals("file.java/func name:1", cs.toString());
     }
 
     /**
This page took 0.025293 seconds and 5 git commands to generate.