[jboss-cvs] javassist/src/main/javassist ...
Shigeru Chiba
chiba at is.titech.ac.jp
Thu May 24 03:46:57 EDT 2007
User: chiba
Date: 07/05/24 03:46:57
Modified: src/main/javassist ClassPool.java
Log:
fixed a but in javassist.bytecode.stackmap etc.
Revision Changes Path
1.60 +2 -1 javassist/src/main/javassist/ClassPool.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ClassPool.java
===================================================================
RCS file: /cvsroot/jboss/javassist/src/main/javassist/ClassPool.java,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -b -r1.59 -r1.60
--- ClassPool.java 16 Nov 2006 14:39:56 -0000 1.59
+++ ClassPool.java 24 May 2007 07:46:57 -0000 1.60
@@ -584,7 +584,8 @@
* @see javassist.ByteArrayClassPath
*/
public CtClass makeClass(InputStream classfile)
- throws IOException, RuntimeException {
+ throws IOException, RuntimeException
+ {
classfile = new BufferedInputStream(classfile);
CtClass clazz = new CtClassType(classfile, this);
clazz.checkModify();
More information about the jboss-cvs-commits
mailing list