src/java/org/apache/ivy/util/XMLHelper.java [546:557]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            this.wrapped = wrapped;
        }

        @Override
        public InputSource resolveEntity(String publicId, String systemId) throws SAXException, IOException {
            if (wrapped != null) {
                InputSource s = wrapped.resolveEntity(publicId, systemId);
                if (s != null) {
                    return s;
                }
            }
            return EMPTY_INPUT_SOURCE;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/java/org/apache/ivy/util/XMLHelper.java [566:577]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            this.wrapped = wrapped;
        }

        @Override
        public InputSource resolveEntity(String publicId, String systemId) throws SAXException, IOException {
            if (wrapped != null) {
                InputSource s = wrapped.resolveEntity(publicId, systemId);
                if (s != null) {
                    return s;
                }
            }
            return EMPTY_INPUT_SOURCE;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



