Fix URIFactory.removeSchema()

This commit is contained in:
Ville Skyttä 2016-04-10 09:01:22 +03:00
parent 5bcf5cbe17
commit 51185f5fb3
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ public class URIFactory<T, P> {
schemaFactory.setFactory(this);
}
public void removeSchema(final SchemaConstants schemaName) {
public void removeSchema(final String schemaName) {
schemas.remove(schemaName);
}