diff options
author | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2010-01-31 16:41:31 +0000 |
---|---|---|
committer | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2010-01-31 16:41:31 +0000 |
commit | 51b215a3eaef6ec8fa1e93d36b8406fdcecdb0a5 (patch) | |
tree | 30d8faf79ea8042b1df292cff59b63a1e6154fb7 /src | |
parent | 3a7bb50f6e34df59a5ec83a5f76b64f21c0426a2 (diff) | |
download | javassist-51b215a3eaef6ec8fa1e93d36b8406fdcecdb0a5.tar.gz javassist-51b215a3eaef6ec8fa1e93d36b8406fdcecdb0a5.zip |
for JIRA-99
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@507 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
Diffstat (limited to 'src')
-rw-r--r-- | src/main/javassist/bytecode/CodeIterator.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/javassist/bytecode/CodeIterator.java b/src/main/javassist/bytecode/CodeIterator.java index 5f8249b4..bb10232c 100644 --- a/src/main/javassist/bytecode/CodeIterator.java +++ b/src/main/javassist/bytecode/CodeIterator.java @@ -1029,7 +1029,7 @@ public class CodeIterator implements Opcode { vars.shiftPc(where, gapLength, exclusive); if (types != null) - vars.shiftPc(where, gapLength, exclusive); + types.shiftPc(where, gapLength, exclusive); if (stack != null) stack.shiftPc(where, gapLength, exclusive); |