Tiny tests cleanup

This commit is contained in:
BoykoAlex
2016-11-21 21:42:25 -05:00
parent 78c0e40427
commit 7690aca913
2 changed files with 53 additions and 20 deletions

View File

@@ -34,7 +34,7 @@ public interface HtmlJavadocIndex {
BufferedReader buffer = new BufferedReader(new InputStreamReader(stream));
return new JavadocContents(buffer.lines().collect(Collectors.joining("\n")));
} catch (IOException e) {
Log.log(e);
Log.log("Cannot load javadoc content from " + url, e);
return NO_HTML_CONTENT;
} finally {
if (stream != null) {