2010-11-09 Francois Chouinard <fchouinard@gmail.com> Contribution for Bug315307
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.jni / src / org / eclipse / linuxtools / lttng / jni / Jni_C_Common.java
index 2713bd6c842f38c561968f9d19aeea072be3c4b6..d9895e4cf0081cede50a035c9eac2d3abb31cf67 100644 (file)
@@ -36,6 +36,7 @@ public abstract class Jni_C_Common extends Jni_C_Constant
      * 
      * @param msg   The string to print in C.
      */
+    @SuppressWarnings("nls")
     public void printC(int libId, String msg) {
         // Need to escape "%" for C printf 
         msg = msg.replaceAll("%", "%%");
@@ -49,6 +50,7 @@ public abstract class Jni_C_Common extends Jni_C_Constant
      * 
      * @param msg   The string to print in C.
      */
+    @SuppressWarnings("nls")
     public void printlnC(int libId, String msg) {
         printC(libId, msg + "\n");
     }
This page took 0.023382 seconds and 5 git commands to generate.