Skip to content

Commit

Permalink
Remove debug print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
subbuss committed Oct 23, 2014
1 parent 31f7926 commit 16992c2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion core/src/main/java/org/jruby/ir/targets/JVMVisitor.java
Expand Up @@ -1450,7 +1450,6 @@ public void ReceiveOptArgInstr(ReceiveOptArgInstr instr) {
public void ReceivePreReqdArgInstr(ReceivePreReqdArgInstr instr) {
if (jvm.methodData().specificArity >= 0 &&
instr.getArgIndex() < jvm.methodData().specificArity) {
System.out.println(jvm.methodData().signature);
jvmAdapter().aload(jvm.methodData().signature.argOffset("arg" + instr.getArgIndex()));
} else {
jvmMethod().loadContext();
Expand Down

0 comments on commit 16992c2

Please sign in to comment.