From 6b4238eb0f0871eae60d71fe596c96c2ae5dce76 Mon Sep 17 00:00:00 2001 From: wisberg Date: Thu, 9 Jun 2005 15:57:10 +0000 Subject: unused imports (only) --- testing/src/org/aspectj/testing/xml/AjcSpecXmlReader.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'testing/src') diff --git a/testing/src/org/aspectj/testing/xml/AjcSpecXmlReader.java b/testing/src/org/aspectj/testing/xml/AjcSpecXmlReader.java index 28912a026..8e13e5778 100644 --- a/testing/src/org/aspectj/testing/xml/AjcSpecXmlReader.java +++ b/testing/src/org/aspectj/testing/xml/AjcSpecXmlReader.java @@ -471,14 +471,17 @@ public class AjcSpecXmlReader { String publicId, String systemId) throws SAXException { + InputSource result = null; if ((null != systemId) && systemId.endsWith(NAME)) { String path = getPath(systemId); if (null != path) { - return new InputSource(path); + result = new InputSource(path); + result.setSystemId(path); + result.setPublicId(path); } } - return null; + return result; } } } -- cgit v1.2.3