This required moving files around in the repository and shifting from a master.adoc structure to _topic_map.yml, etc. README and Makefile modified slightly to reflect new build process
11 lines
363 B
Text
11 lines
363 B
Text
|
|
class NoEntityResolver implements EntityResolver {
|
|
@Override
|
|
public InputSource resolveEntity(String publicId, String systemId)
|
|
throws SAXException, IOException {
|
|
// Throwing an exception stops validation.
|
|
throw new IOException(String.format(
|
|
"attempt to resolve \"%s\" \"%s\"", publicId, systemId));
|
|
}
|
|
}
|
|
|