Skip to content

Commit

Permalink
[#353] Validation of external $ref property values should show error …
Browse files Browse the repository at this point in the history
…on unexpected object type
  • Loading branch information
ghillairet committed Sep 22, 2017
1 parent f4420aa commit b1bd92e
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,6 @@ public JsonNode getDocument(URL url) {
}

public JsonNode getDocument(URI uri) {
final IFile file = getFile(uri);
if (file == null || !file.exists()) {
return null;
}

try {
return getDocument(uri.toURL());
} catch (MalformedURLException e) {
Expand Down

0 comments on commit b1bd92e

Please sign in to comment.