Make List type safe. Remove/suppress all warnings.
[marc4j.git] / src / org / marc4j / converter / impl / UnicodeToAnsel.java
index 6c13610..6e2ce5f 100644 (file)
@@ -96,11 +96,13 @@ public class UnicodeToAnsel extends CharConverter {
      * @param data - the UCS/Unicode data in an array of char\r
      * @return String - the MARC-8 data\r
      */\r
+    @SuppressWarnings("rawtypes")\r
     public String convert(char data[]) {\r
         StringBuffer sb = new StringBuffer();\r
         CodeTableTracker ctt = new CodeTableTracker();\r
 \r
-        boolean technique1 = false;\r
+        @SuppressWarnings("unused")\r
+       boolean technique1 = false;\r
 \r
         for (int i = 0; i < data.length; i++) {\r
             Character c = new Character(data[i]);\r