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
Is your feature request related to a problem? Please describe.
There are some methods that just duplicate of another one, or doing exactly the same logic as another method and do not have any another purpose. Check and find such methods and remove them, replace theirs calls by one method.
For instance, there is no difference between those 3 methods, ToBooleanSafe, ToBoolean, ToNullableBoolean:
(not needed to have "bool?" as return type, of course it is possible to assign "bool" to nullable "bool?"
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
There are some methods that just duplicate of another one, or doing exactly the same logic as another method and do not have any another purpose. Check and find such methods and remove them, replace theirs calls by one method.
For instance, there is no difference between those 3 methods, ToBooleanSafe, ToBoolean, ToNullableBoolean:
(not needed to have "bool?" as return type, of course it is possible to assign "bool" to nullable "bool?"
The text was updated successfully, but these errors were encountered: