diff options
author | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2012-10-04 13:35:56 +0000 |
---|---|---|
committer | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2012-10-04 13:35:56 +0000 |
commit | 3694be0eb8ccdc2d558085f141b133676b97325c (patch) | |
tree | 50c2a54201b38b3d83532d4356b0e80c68b18dcc | |
parent | 5a4853ee87743b72a5a0c1486f3af4ce04ae8774 (diff) | |
download | javassist-3694be0eb8ccdc2d558085f141b133676b97325c.tar.gz javassist-3694be0eb8ccdc2d558085f141b133676b97325c.zip |
fixed JASSIST-160
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@670 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
-rw-r--r-- | src/main/javassist/bytecode/StackMapTable.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/main/javassist/bytecode/StackMapTable.java b/src/main/javassist/bytecode/StackMapTable.java index 0ea3e089..4518ef36 100644 --- a/src/main/javassist/bytecode/StackMapTable.java +++ b/src/main/javassist/bytecode/StackMapTable.java @@ -909,8 +909,6 @@ public class StackMapTable extends AttributeInfo { 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 @@ public class StackMapTable extends AttributeInfo { 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; |