You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 21, 2026. It is now read-only.
In Util:114 the line
in = new BufferedReader(new InputStreamReader(con.getErrorStream()));
does not take into account that con.getErrorStream() may return null, in such case a NPE will be thrown.
See https://docs.oracle.com/javase/7/docs/api/java/net/HttpURLConnection.html#getErrorStream()