*** empty log message ***
[m17n/m17n-lib-cs.git] / MCharTable.cs
index 1d9adc7..845b6ee 100644 (file)
@@ -341,7 +341,7 @@ namespace M17N.Core
       return mst.ReadInteger (out to);
     }
 
-    private MCharTable load_char_table (MCharTable table)
+    private void load_char_table (MCharTable table)
     {
       MSymbol type = tag[1];
       
@@ -392,16 +392,15 @@ namespace M17N.Core
              mst.ForwardLine ();
            }
        }
-      return table;
     }
 
-    public object Load (MCharTable table)
+    public void Load (MCharTable table)
     {
       if (loader != null || Info.Format != Mchar_table)
        throw new ArgumentException ("Not a database of CharTable type");
       if (! update_status ())
        throw new Exception ("Database invalid");
-      return load_char_table (table);
+      load_char_table (table);
     }
   }
 }