Skip to content

Commit

Permalink
No hyperlink to DTD source on hover
Browse files Browse the repository at this point in the history
Fixes eclipse#693

Signed-off-by: azerr <[email protected]>
  • Loading branch information
angelozerr committed May 12, 2020
1 parent 25cf8e4 commit bafff28
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ private CMDocument findCMDocument(String uri, String publicId, String systemId,
try {
Path file = cacheResolverExtension.getCachedResource(resolvedUri);
if (file != null) {
cmDocument = modelProvider.createCMDocument(file.toFile().getPath());
cmDocument = modelProvider.createCMDocument(file.toUri().toString());
}
} catch (CacheResourceDownloadingException e) {
// the DTD/XML Schema is downloading
Expand Down

0 comments on commit bafff28

Please sign in to comment.