Fix compile problem

This commit is contained in:
jamesagnew 2015-09-01 07:07:45 -04:00
parent e8f5451cc9
commit f04147dcfd
1 changed files with 1 additions and 1 deletions

View File

@ -204,7 +204,7 @@ class SchemaBaseValidator implements IValidatorModule {
InputStream baseIs = FhirValidator.class.getResourceAsStream(pathToBase);
if (baseIs == null) {
IOUtils.closeQuietly(baseIs.close());
IOUtils.closeQuietly(baseIs);
throw new InternalErrorException("Schema file not found: " + pathToBase);
}