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
I identified that when we use methods with return type BOOLEAN, the expression generated Boolean.getBoolean(value.ToString()) to return object is not working properly. I did a test where value.ToString() => "true" and the result of Boolean.getBoolean(value.ToString()) is false. The solution is to swap Boolean.getBoolean(value.ToString()); to Boolean.valueOf(value.ToString ());
The text was updated successfully, but these errors were encountered:
I identified that when we use methods with return type BOOLEAN, the expression generated Boolean.getBoolean(value.ToString()) to return object is not working properly. I did a test where value.ToString() => "true" and the result of Boolean.getBoolean(value.ToString()) is false. The solution is to swap Boolean.getBoolean(value.ToString()); to Boolean.valueOf(value.ToString ());
The text was updated successfully, but these errors were encountered: