[rfc][icedtea-web] fixfor portalbank.no
Omair Majid
omajid at redhat.com
Thu May 2 10:07:34 PDT 2013
On 05/02/2013 05:44 AM, Jiri Vanek wrote:
> /* Fully consuming current request helps with connection re-use
> * See http://docs.oracle.com/javase/1.5.0/docs/guide/net/http-keepalive.html */
> - StreamUtils.consumeAndCloseInputStream(httpConnection.getInputStream());
> + HttpUtils.consumeAndCloseConnectionSilently(httpConnection);
Just a nit: the CloseConnection in the name
consumeAndCloseConnectionSilently implies that we are calling
disconnect() or otherwise closing the HttpURLConnection, while we are
not doing that explicitly to reuse connections.
> - private URL findBestUrl(Resource resource) {
> + URL findBestUrl(Resource resource) {
I guess the method is exposed so some unit test can exercise this
method? How about you make this change when adding that unit test itself?
> + if (responseCode < 200 || responseCode >= 300) {
> + if (JNLPRuntime.isDebug()) {
> + System.err.println("For "+resource.toString()+" the server returned " + responseCode + " code for "+requestMethod+" request for " + url.toExternalForm());
Please uses spaces between symbols consistently.
> + }else {
Please fix the spacing here: "} else {"
Cheers,
Omair
--
PGP Key: 66484681 (http://pgp.mit.edu/)
Fingerprint = F072 555B 0A17 3957 4E95 0056 F286 F14F 6648 4681
More information about the distro-pkg-dev
mailing list