Skip to content

Commit

Permalink
Fix build error with static call
Browse files Browse the repository at this point in the history
  • Loading branch information
midgleyc committed May 29, 2022
1 parent 4b35811 commit df129fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ protected ModuleSource loadFromActualUri(URI uri, URI base, Object validator)
}
}

private static Reader getReader(URLConnection urlConnection) throws IOException {
private Reader getReader(URLConnection urlConnection) throws IOException {
return new InputStreamReader(
urlConnection.getInputStream(), getCharacterEncoding(urlConnection));
}
Expand Down

0 comments on commit df129fd

Please sign in to comment.