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
Should FieldPointer take instance's class instead of field class when field is not null?
Considering an example:
class MyClass{
private final Number value;
...constructor
}
Might work incorrectly in couple of comparison operations, since Number class itself does not implement Comparable interface, meanwhile his subclasses do.
Need additional investigation
The text was updated successfully, but these errors were encountered:
Should FieldPointer take instance's class instead of field class when field is not null?
Considering an example:
Might work incorrectly in couple of comparison operations, since Number class itself does not implement Comparable interface, meanwhile his subclasses do.
Need additional investigation
The text was updated successfully, but these errors were encountered: