Changed visibility of getScriptFromUrl in order to be able to override it.

This commit is contained in:
Michael Herzberg 2015-07-01 13:29:27 +02:00
parent b620ae4c1d
commit d1010ff939
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ public class DomLessSourceExtractor extends JSSourceExtractor {
}
}
private void getScriptFromUrl(String urlAsString, ITag scriptTag) throws IOException, MalformedURLException {
protected void getScriptFromUrl(String urlAsString, ITag scriptTag) throws IOException, MalformedURLException {
URL scriptSrc = new URL(entrypointUrl, urlAsString);
Reader scriptInputStream;
try {