From d5540d40a74fa1301f6ba587f332079aae59cf17 Mon Sep 17 00:00:00 2001 From: Uwe Kubosch Date: Wed, 5 Oct 2011 23:24:07 +0200 Subject: [PATCH] * Removed noisy printStackTrace when trying to list files in a JAR that does not exist. --- src/org/jruby/RubyDir.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/org/jruby/RubyDir.java b/src/org/jruby/RubyDir.java index a04656b2511..3f51993a738 100644 --- a/src/org/jruby/RubyDir.java +++ b/src/org/jruby/RubyDir.java @@ -211,7 +211,6 @@ public static IRubyObject aref(ThreadContext context, IRubyObject recv, IRubyObj allFiles.toArray(tempFileList); return runtime.newArrayNoCopy(tempFileList); } catch (IOException e) { - e.printStackTrace(); return runtime.newArrayNoCopy(new IRubyObject[0]); } }