Skip to content

Commit 0128c25

Browse files
author
Jake Waffle
committed
Fixed some funky formatting.
1 parent 409c4a5 commit 0128c25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/networknt/schema/uri/URISchemeFetcher.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ public Map<String, URIFetcher> getURIFetchers() {
4343
*/
4444
public InputStream fetch(final URI uri) throws IOException {
4545
final URIFetcher uriFetcher = this.uriFetchers.get(uri.getScheme());
46-
if (uriFetcher == null) {
46+
if (uriFetcher == null) {
4747
throw new IllegalArgumentException(String.format("Unsupported URI scheme encountered: %s", uri.getScheme()));
48-
}
48+
}
4949
return uriFetcher.fetch(uri);
5050
}
5151
}

0 commit comments

Comments
 (0)