From: Bruno Haible Date: Mon, 14 Feb 2005 11:03:13 +0000 (+0000) Subject: Make it work with jdom-1.0. X-Git-Tag: v0.14.2~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=80d383b72337e530e245e09bbea85c418640c5d3;p=thirdparty%2Fgettext.git Make it work with jdom-1.0. --- diff --git a/gettext-runtime/doc/Admin/Matrix.java b/gettext-runtime/doc/Admin/Matrix.java index 4da0a21c4..f645363a1 100644 --- a/gettext-runtime/doc/Admin/Matrix.java +++ b/gettext-runtime/doc/Admin/Matrix.java @@ -55,6 +55,10 @@ public class Matrix { Document doc; try { doc = builder.build(new File("matrix.xml")); + } catch (IOException e) { + e.printStackTrace(); + doc = null; + System.exit(1); } catch (JDOMException e) { e.printStackTrace(); doc = null;