Skip to content

Commit

Permalink
fixed indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
bilalyasar committed Oct 1, 2015
1 parent a5f3e2b commit 61f3039
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Expand Up @@ -117,9 +117,9 @@ public Map<String, String> execute() throws Exception {
try {
stream = callService(endpoint, signature);
response = CloudyUtility.unmarshalTheResponse(stream, awsConfig);
return response;
} finally {
closeResource(stream);
return response;
}
}

Expand Down
Expand Up @@ -195,10 +195,10 @@ protected void schemaValidation(Document doc)
} catch (Exception e) {
throw new InvalidConfigurationException(e.getMessage());
} finally {
for (StreamSource source : schemas) {
closeResource(source.getInputStream());
}
closeResource(inputStream);
for (StreamSource source : schemas) {
closeResource(source.getInputStream());
}
closeResource(inputStream);
}
}

Expand Down

0 comments on commit 61f3039

Please sign in to comment.