From 851af8e868297c85de59657f9c63a8f9901d642b Mon Sep 17 00:00:00 2001 From: Peter Reilly Date: Mon, 14 Mar 2005 17:39:29 +0000 Subject: [PATCH] linelength git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277953 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/types/XMLCatalog.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/org/apache/tools/ant/types/XMLCatalog.java b/src/main/org/apache/tools/ant/types/XMLCatalog.java index 54b0b05e9..f38722094 100644 --- a/src/main/org/apache/tools/ant/types/XMLCatalog.java +++ b/src/main/org/apache/tools/ant/types/XMLCatalog.java @@ -660,7 +660,8 @@ public class XMLCatalog extends DataType try { url = new URL(baseURL, uri); } catch (MalformedURLException ex) { - // this processing is useful under Windows when the location of the DTD has been given as an absolute path + // this processing is useful under Windows when the location of the DTD + // has been given as an absolute path // see Bugzilla Report 23913 File testFile = new File(uri); if (testFile.exists() && testFile.canRead()) { @@ -669,7 +670,8 @@ public class XMLCatalog extends DataType try { url = FILE_UTILS.getFileURL(testFile); } catch (MalformedURLException ex1) { - throw new BuildException("could not find an URL for :" + testFile.getAbsolutePath()); + throw new BuildException( + "could not find an URL for :" + testFile.getAbsolutePath()); } } else { log("uri : '"