Skip to content

Commit 5492683

Browse files
committedJan 23, 2018
Fixes #5003. Low-level Java error printed on Errno::EPIPE exception
Errant printStackTrace() from 2004 O_o.
1 parent ba67802 commit 5492683

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed
 

‎core/src/main/java/org/jruby/RubyIO.java

-1
Original file line numberDiff line numberDiff line change
@@ -4226,7 +4226,6 @@ public static IRubyObject copy_stream(ThreadContext context, IRubyObject recv, I
42264226

42274227
return context.runtime.newFixnum(size);
42284228
} catch (IOException ioe) {
4229-
ioe.printStackTrace();
42304229
throw runtime.newIOErrorFromException(ioe);
42314230
} finally {
42324231
if (offset != null) {

0 commit comments

Comments
 (0)
Please sign in to comment.