Make List type safe. Remove/suppress all warnings.
[marc4j.git] / src / org / marc4j / converter / impl / ReverseCodeTable.java
index 967eabd..45e6667 100644 (file)
@@ -47,14 +47,17 @@ import org.xml.sax.helpers.DefaultHandler;
  * @see DefaultHandler\r
  */\r
 public class ReverseCodeTable {\r
+  @SuppressWarnings("rawtypes")\r
   protected static Hashtable charset = null;\r
 \r
+  @SuppressWarnings("rawtypes")\r
   protected static Vector combining = null;\r
 \r
   public boolean isCombining(Character c) {\r
     return combining.contains(c);\r
   }\r
 \r
+  @SuppressWarnings("rawtypes")\r
   public Hashtable codeTableHash(Character c) {\r
     Hashtable chars = (Hashtable) charset.get(c);\r
     if (chars == null) {\r
@@ -64,6 +67,7 @@ public class ReverseCodeTable {
       return chars;\r
   }\r
 \r
+  @SuppressWarnings("rawtypes")\r
   public static boolean inPreviousCharCodeTable(Character c,\r
       CodeTableTracker ctt) {\r
     Hashtable chars = (Hashtable) charset.get(c);\r
@@ -82,6 +86,7 @@ public class ReverseCodeTable {
     }\r
   }\r
 \r
+  @SuppressWarnings("rawtypes")\r
   public static char getChar(Character c, CodeTableTracker ctt) {\r
     Hashtable chars = (Hashtable) charset.get(c);\r
 \r