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

Shigeru Chiba chiba at is.titech.ac.jp
Sun Oct 22 23:53:06 EDT 2006


  User: chiba   
  Date: 06/10/22 23:53:06

  Modified:    src/main/javassist/compiler  CodeGen.java
  Log:
  fixed JIRA JASSIST-27 CodeGen.getArrayWriteOp returns a invalid operation for a array of type short
  
  Revision  Changes    Path
  1.29      +2 -0      javassist/src/main/javassist/compiler/CodeGen.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CodeGen.java
  ===================================================================
  RCS file: /cvsroot/jboss/javassist/src/main/javassist/compiler/CodeGen.java,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -b -r1.28 -r1.29
  --- CodeGen.java	11 Jan 2006 06:45:55 -0000	1.28
  +++ CodeGen.java	23 Oct 2006 03:53:06 -0000	1.29
  @@ -1652,6 +1652,8 @@
               return LASTORE;
           case INT :
               return IASTORE;
  +        case SHORT :
  +            return SASTORE;
           case CHAR :
               return CASTORE;
           case BYTE :
  
  
  



More information about the jboss-cvs-commits mailing list