From 9c48e3107db92a01d904c6d89afdfa60a0837f32 Mon Sep 17 00:00:00 2001 From: Oliver Burn Date: Tue, 4 Feb 2003 11:37:44 +0000 Subject: [PATCH] Fix compilation under JDK 1.3.x --- .../com/puppycrawl/tools/checkstyle/AbstractLoader.java | 4 ++-- 1 file 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 fcc116e6e..c2e8dacfe 100644 --- a/src/checkstyle/com/puppycrawl/tools/checkstyle/AbstractLoader.java +++ b/src/checkstyle/com/puppycrawl/tools/checkstyle/AbstractLoader.java @@ -83,9 +83,9 @@ abstract class AbstractLoader mParser.parse(aInputSource); } - /** @see org.xml.sax.EntityResolver */ + /** Jibber inheritDoc */ public InputSource resolveEntity(String aPublicId, String aSystemId) - throws SAXException + throws SAXException, IOException { if (mPublicId.equals(aPublicId)) { final InputStream dtdIS = getClass().getClassLoader()