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

Shigeru Chiba chiba at is.titech.ac.jp
Tue May 29 05:22:02 EDT 2007


  User: chiba   
  Date: 07/05/29 05:22:02

  Modified:    src/main/javassist/bytecode/stackmap  TypeData.java
  Log:
  changed the compiler so that .class will be compiled into ldc.
  
  Revision  Changes    Path
  1.6       +1 -1      javassist/src/main/javassist/bytecode/stackmap/TypeData.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: TypeData.java
  ===================================================================
  RCS file: /cvsroot/jboss/javassist/src/main/javassist/bytecode/stackmap/TypeData.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -b -r1.5 -r1.6
  --- TypeData.java	29 May 2007 03:51:47 -0000	1.5
  +++ TypeData.java	29 May 2007 09:22:02 -0000	1.6
  @@ -113,7 +113,7 @@
           }
   
           protected void setType(String s, ClassPool cp) throws BadBytecode {
  -            throw new BadBytecode("conflict:" + name + " and " + s);
  +            throw new BadBytecode("conflict: " + name + " and " + s);
           }
   
           public String toString() { return name; }
  
  
  



More information about the jboss-cvs-commits mailing list