Skip to content

Commit

Permalink
* Removed noisy printStackTrace when trying to list files in a JAR th…
Browse files Browse the repository at this point in the history
…at does not exist.
  • Loading branch information
donv committed Oct 5, 2011
1 parent 0fb1ff4 commit d5540d4
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/org/jruby/RubyDir.java
Expand Up @@ -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]);
}
}
Expand Down

0 comments on commit d5540d4

Please sign in to comment.