From: jgreene Date: Wed, 28 May 2008 00:49:47 +0000 (+0000) Subject: Small ws fix X-Git-Tag: rel_3_17_1_ga~204 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=2500b08feb3a8623c977cbf7284a24c1d71e96cd;p=javassist.git Small ws fix git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@439 30ef5769-5b8d-40dd-aea6-55b5d6557bb3 --- diff --git a/src/main/javassist/bytecode/analysis/Executor.java b/src/main/javassist/bytecode/analysis/Executor.java index 7cf9a679..4ee55841 100644 --- a/src/main/javassist/bytecode/analysis/Executor.java +++ b/src/main/javassist/bytecode/analysis/Executor.java @@ -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--;