From 58ac4b3e38d87204299ad085777ec887252da7f6 Mon Sep 17 00:00:00 2001 From: Adam Welc <adam.welc@oracle.com> Date: Fri, 11 Mar 2016 15:58:56 -0800 Subject: [PATCH] Removed debugging code. --- .../src/com/oracle/truffle/r/runtime/RChannel.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/RChannel.java b/com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/RChannel.java index 2256112edf..4ffeb77498 100644 --- a/com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/RChannel.java +++ b/com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/RChannel.java @@ -301,10 +301,6 @@ public class RChannel { msg = RSerialize.serialize(msg, false, true, RSerialize.DEFAULT_VERSION, null); } try { - int i = 0; - if (msg == null) { - i++; - } (id > 0 ? channel.masterToClient : channel.clientToMaster).put(msg); } catch (InterruptedException x) { throw RError.error(RError.SHOW_CALLER2, RError.Message.GENERIC, "error sending through the channel"); -- GitLab