Skip to content

Commit baf106c

Browse files
committed
this debug output does not belong here.
1 parent 8157139 commit baf106c

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/vm/jvm/runtime/org/perl6/nqp/io/AsyncFileHandle.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,13 +136,10 @@ public void spurt(final ThreadContext tc, final SixModelObject Str, final SixMod
136136
SpurtState ss = new SpurtState();
137137
ss.bb = enc.encode(s_buf);
138138
ss.expected = ss.bb.remaining();
139-
System.out.println("There is " + s_data + " in the buffer and it has " + ss.bb.remaining() + " remaining");
140139
ss.bb.rewind();
141-
System.out.println("After the rewind: " + ss.bb.remaining() + " remaining");
142140

143141
final CompletionHandler<Integer, SpurtState> ch = new CompletionHandler<Integer, SpurtState>() {
144142
public void completed(Integer bytes, SpurtState ss) {
145-
System.out.println("The position is " + ss.bb.position() + " and i've expected it to be " + ss.expected);
146143
if (ss.bb.position() == ss.expected) {
147144
/* Done. Call done handler. */
148145
ThreadContext curTC = tc.gc.getCurrentThreadContext();

0 commit comments

Comments
 (0)