Description
The below code in ClientBinaryValue.java will trow a NullPointerException if the value of variable 'valid' is null
public final boolean isValid() throws NamingException
{
if ( valid != null )
return valid;
}
The below code in ClientBinaryValue.java will trow a NullPointerException if the value of variable 'valid' is null
public final boolean isValid() throws NamingException
{
if ( valid != null )
return valid;
}