--- old/src/share/classes/sun/rmi/transport/proxy/HttpInputStream.java Fri Feb 24 10:52:09 2012 +++ new/src/share/classes/sun/rmi/transport/proxy/HttpInputStream.java Fri Feb 24 10:52:07 2012 @@ -70,8 +70,8 @@ throw new EOFException(); if (line.toLowerCase().startsWith(key)) { - if (contentLengthFound) - ; // what would we want to do in this case?? + // if contentLengthFound is true + // we should probably do something here bytesLeft = Integer.parseInt(line.substring(key.length()).trim()); contentLengthFound = true;