Hi Daniel,

Thank you for feedback.

Fixed and verified locally. http://cr.openjdk.java.net/~skovalev/8169196/webrev.02/

--
With best regards,
Sergei

08.11.16 20:38, Daniel Fuchs wrote:
Hi Sergey,

This looks good now - except for line 223:

221 Field ntlmSupportedField = ntlmProxyClass.getDeclaredField("supported");
 222             ntlmSupportedField.setAccessible(true);
223 if (Boolean.TRUE.equals(ntlmSupportedField.getBoolean(ntlmProxyClass))) {

This should be:

if (ntlmSupportedField.getBoolean(null)) {

best regards,

-- daniel

Reply via email to