]> source.dussan.org Git - javassist.git/commitdiff
Small ws fix
authorjgreene <jgreene@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Wed, 28 May 2008 00:49:47 +0000 (00:49 +0000)
committerjgreene <jgreene@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Wed, 28 May 2008 00:49:47 +0000 (00:49 +0000)
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@439 30ef5769-5b8d-40dd-aea6-55b5d6557bb3

src/main/javassist/bytecode/analysis/Executor.java

index 7cf9a67942ac6e479d0e95eb8190a7ff340eae7a..4ee55841df7f6be49a070bc5c9b4a520577d74d8 100644 (file)
@@ -282,8 +282,8 @@ public class Executor implements Opcode {
                 int insert = end - (opcode - DUP2_X1) - 1;
                 Type type1 = frame.getStack(frame.getTopIndex() - 1);
                 Type type2 = frame.peek();
-                 frame.push(type1);
-                 frame.push(type2);
+                frame.push(type1);
+                frame.push(type2);
                 while (end > insert) {
                     frame.setStack(end, frame.getStack(end - 2));
                     end--;