Skip to content

Commit 33ae100

Browse files
committed
Remove final modifiers from two DefaultEntityResolver methods (#9)
1 parent 109eb50 commit 33ae100

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/io/sf/carte/doc/xml/dtd/DefaultEntityResolver.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ protected boolean registerSystemIdFilename(String systemId, String filename) {
484484
* to the input source, or when connecting to it.
485485
*/
486486
@Override
487-
public final InputSource resolveEntity(String name, String publicId, String baseURI, String systemId)
487+
public InputSource resolveEntity(String name, String publicId, String baseURI, String systemId)
488488
throws SAXException, IOException {
489489
if (publicId == null) {
490490
publicId = systemIdToPublicId.get(systemId);
@@ -701,7 +701,7 @@ protected boolean isValidContentType(String conType) {
701701
* to the input source, or when connecting to it.
702702
*/
703703
@Override
704-
public final InputSource resolveEntity(String publicId, String systemId) throws SAXException, IOException {
704+
public InputSource resolveEntity(String publicId, String systemId) throws SAXException, IOException {
705705
return resolveEntity(null, publicId, null, systemId);
706706
}
707707

0 commit comments

Comments
 (0)