From d66e29f62b09b97f4d2d47cd7ee6442ddf41770d Mon Sep 17 00:00:00 2001 From: Conor MacNeill Date: Mon, 11 Mar 2002 13:01:05 +0000 Subject: [PATCH] Minor style fixup git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271818 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/types/XMLCatalog.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/main/org/apache/tools/ant/types/XMLCatalog.java b/src/main/org/apache/tools/ant/types/XMLCatalog.java index bffa4610f..55912012d 100644 --- a/src/main/org/apache/tools/ant/types/XMLCatalog.java +++ b/src/main/org/apache/tools/ant/types/XMLCatalog.java @@ -82,9 +82,10 @@ import org.apache.tools.ant.util.FileUtils; * *

* The object implemention sometask must provide a method called - * createCatalog which returns an instance of XCatalog. - * Nested dtd and entity definitions are handled by the XCatalog object and - * must be labeled dtd and entity respectively.

+ * createCatalog which returns an instance of + * XCatalog. Nested dtd and entity definitions are handled by + * the XCatalog object and must be labeled dtd and + * entity respectively.

* *

Possible future extension could allow a catalog file instead of nested * elements, or use Norman Walsh's entity resolver from xml-commons

@@ -93,7 +94,7 @@ import org.apache.tools.ant.util.FileUtils; * @version $Id$ */ public class XMLCatalog extends DataType implements Cloneable, EntityResolver { - + /** File utilities instance */ private FileUtils fileUtils = FileUtils.newFileUtils(); //-- Fields ----------------------------------------------------------------