From 9603ae5a156fae4acb8423dba6d5e4d571fd2d6e Mon Sep 17 00:00:00 2001 From: adam Date: Sat, 2 Jul 2005 08:17:43 +0000 Subject: [PATCH] made ClassFile(DataInput) public darcs-hash:20050702081743-5007d-e200e79e9ceabbf5bd508a67f6c59abf4d03dc4b.gz --- src/org/ibex/classgen/ClassFile.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); -- 1.7.10.4