We have an issue in the code, where we have Objects.isNull(i), where i is an int.
Then, Java boxes the integer. when i != null is written, the auto boxing does not work and leads to a compile error:
operand types for binary operator '!='
Wish: when the method parameter type is not an object, do not rewrite.
See JabRef/jabref#10788
We have an issue in the code, where we have
Objects.isNull(i), whereiis anint.Then, Java boxes the integer. when
i != nullis written, the auto boxing does not work and leads to a compile error:Wish: when the method parameter type is not an object, do not rewrite.
See JabRef/jabref#10788