made ClassFile(DataInput) public
authoradam <adam@megacz.com>
Sat, 2 Jul 2005 08:17:43 +0000 (08:17 +0000)
committeradam <adam@megacz.com>
Sat, 2 Jul 2005 08:17:43 +0000 (08:17 +0000)
darcs-hash:20050702081743-5007d-e200e79e9ceabbf5bd508a67f6c59abf4d03dc4b.gz

src/org/ibex/classgen/ClassFile.java

index 2a755f0..f598519 100644 (file)
@@ -199,8 +199,8 @@ public class ClassFile implements CGConst {
         }
     }
 
-    ClassFile(DataInput i) throws IOException { this(i, false); }
-    ClassFile(DataInput i, boolean ssa) throws IOException {
+    public ClassFile(DataInput i) throws IOException { this(i, false); }
+    public ClassFile(DataInput i, boolean ssa) throws IOException {
         int magic = i.readInt();
         if (magic != 0xcafebabe) throw new ClassReadExn("invalid magic: " + Long.toString(0xffffffffL & magic, 16));
         minor = i.readShort();