From: Jim Procter Date: Fri, 23 Jan 2015 15:31:26 +0000 (+0000) Subject: JAL-1286 don't print an exception if a non-gzip stream is attempted to be opened... X-Git-Tag: Jalview_2_9~108^2~2 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=7e257a47edaa3762753f5566bc3fcb2522719542;hp=5eb77715baf0d548c72385e13a3483cd63c36218;p=jalview.git JAL-1286 don't print an exception if a non-gzip stream is attempted to be opened as gzip --- diff --git a/src/jalview/io/FileParse.java b/src/jalview/io/FileParse.java index 8e9a49c..f155e51 100755 --- a/src/jalview/io/FileParse.java +++ b/src/jalview/io/FileParse.java @@ -157,7 +157,7 @@ public class FileParse { warningMessage = "Failed to resolve as a GZ stream (" + x.getMessage() + ")"; - x.printStackTrace(); + // x.printStackTrace(); } ; }