[jboss-cvs] javassist/src/main/javassist/bytecode ...

Shigeru Chiba chiba at is.titech.ac.jp
Sun Nov 5 18:16:35 EST 2006


  User: chiba   
  Date: 06/11/05 18:16:35

  Modified:    src/main/javassist/bytecode  ClassFile.java
  Log:
  made a proxy class serializable (JASSIST-20).
  
  Revision  Changes    Path
  1.27      +2 -1      javassist/src/main/javassist/bytecode/ClassFile.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ClassFile.java
  ===================================================================
  RCS file: /cvsroot/jboss/javassist/src/main/javassist/bytecode/ClassFile.java,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -b -r1.26 -r1.27
  --- ClassFile.java	18 Jul 2006 17:51:04 -0000	1.26
  +++ ClassFile.java	5 Nov 2006 23:16:35 -0000	1.27
  @@ -545,7 +545,8 @@
                       && notBridgeMethod(minfo) && notBridgeMethod(newMinfo)
                       && Descriptor.eqParamTypes(minfo.getDescriptor(),
                                                  descriptor))
  -                throw new CannotCompileException("duplicate method: " + name);
  +                throw new CannotCompileException("duplicate method: " + name
  +                                                 + " in " + this.getName());
           }
       }
   
  
  
  



More information about the jboss-cvs-commits mailing list