X-Git-Url: http://git.megacz.com/?p=org.ibex.classgen.git;a=blobdiff_plain;f=src%2Forg%2Fibex%2Fclassgen%2FClassFile.java;h=f59851925c04d385b682d1cc3b242dd35380d80b;hp=2a755f0be09240394129b44776fcf08993403e92;hb=9603ae5a156fae4acb8423dba6d5e4d571fd2d6e;hpb=368f2c145d589d14ebd57f50304ad383345a9f03 diff --git a/src/org/ibex/classgen/ClassFile.java b/src/org/ibex/classgen/ClassFile.java index 2a755f0..f598519 100644 --- a/src/org/ibex/classgen/ClassFile.java +++ b/src/org/ibex/classgen/ClassFile.java @@ -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();