[jboss-cvs] javassist SVN: r670 - trunk/src/main/javassist/bytecode.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Oct 4 09:35:57 EDT 2012


Author: chiba
Date: 2012-10-04 09:35:56 -0400 (Thu, 04 Oct 2012)
New Revision: 670

Modified:
   trunk/src/main/javassist/bytecode/StackMapTable.java
Log:
fixed JASSIST-160

Modified: trunk/src/main/javassist/bytecode/StackMapTable.java
===================================================================
--- trunk/src/main/javassist/bytecode/StackMapTable.java	2012-10-04 07:37:39 UTC (rev 669)
+++ trunk/src/main/javassist/bytecode/StackMapTable.java	2012-10-04 13:35:56 UTC (rev 670)
@@ -909,8 +909,6 @@
                 newDelta = offsetDelta - gap;
             else if (where == oldPos)
                 newDelta = offsetDelta + gap;
-            // else if (gap > 0 && oldPos < where && where < position) // chiba
-            //    throw new RuntimeException("old:" + oldPos + " where:" + where + " pos:" + position);
             else
                 return;
 
@@ -951,8 +949,6 @@
                 newDelta = offsetDelta - gap;
             else if (where == oldPos)
                 newDelta = offsetDelta + gap;
-            // else if (gap > 0 && oldPos < where && where < position)   // chiba
-            //    throw new RuntimeException("old:" + oldPos + " where:" + where + " pos:" + position);
             else
                 return;
 



More information about the jboss-cvs-commits mailing list