test/serviceability/jdwp/JdwpCmd.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/test/serviceability/jdwp/JdwpCmd.java	Mon Sep 19 15:29:58 2016
--- new/test/serviceability/jdwp/JdwpCmd.java	Mon Sep 19 15:29:56 2016

*** 68,77 **** --- 68,78 ---- int getDataLength() { return dataLen; } public final T send(JdwpChannel channel) throws IOException { + System.err.println("Sending command: " + this); channel.write(data.array(), HEADER_LEN + getDataLength()); if (reply != null) { reply.initFromStream(channel.getInputStream()); } return (T) reply;

test/serviceability/jdwp/JdwpCmd.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File