From 17cfbb2442d878ae6e229f809b8b2c479b9dfdcb Mon Sep 17 00:00:00 2001 From: Oliver Burn Date: Sun, 23 Feb 2003 07:32:30 +0000 Subject: [PATCH] Changed the scope to be public. --- .../com/puppycrawl/tools/checkstyle/AbstractLoader.java | 2 +- .../com/puppycrawl/tools/checkstyle/ConfigurationLoader.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/checkstyle/com/puppycrawl/tools/checkstyle/AbstractLoader.java b/src/checkstyle/com/puppycrawl/tools/checkstyle/AbstractLoader.java index ca0d903b4..1e7253c11 100644 --- a/src/checkstyle/com/puppycrawl/tools/checkstyle/AbstractLoader.java +++ b/src/checkstyle/com/puppycrawl/tools/checkstyle/AbstractLoader.java @@ -41,7 +41,7 @@ import org.xml.sax.helpers.DefaultHandler; * * @author Oliver Burn */ -abstract class AbstractLoader +public abstract class AbstractLoader extends DefaultHandler { /** the public id to resolve */ diff --git a/src/checkstyle/com/puppycrawl/tools/checkstyle/ConfigurationLoader.java b/src/checkstyle/com/puppycrawl/tools/checkstyle/ConfigurationLoader.java index 3cc6b87f9..f6eb4d760 100644 --- a/src/checkstyle/com/puppycrawl/tools/checkstyle/ConfigurationLoader.java +++ b/src/checkstyle/com/puppycrawl/tools/checkstyle/ConfigurationLoader.java @@ -44,7 +44,7 @@ import org.xml.sax.SAXException; * @author Oliver Burn * @version 1.0 */ -class ConfigurationLoader +public class ConfigurationLoader extends AbstractLoader { /** the public ID for the configuration dtd */