is there any way to force the compiler to ignore j...
# android
m
is there any way to force the compiler to ignore java null checks annotations for an override case ?
g
No, there is no way to do that
m
so its a framework annotation bug
what to do ? besides reporting and using java code 😛
g
Are you sure that you don’t have other bugs in your code?
What kind class do you use?
m
i cannot change nullability in that override clearView call. compiler complains: it overrides nothing
but for some reason, i have crashes saying clearView returned null recyclerview
g
What is clearView?
Is that ItemTouchHelper.Callback method?
m
extending
Copy code
ItemTouchHelper.Callback()
yes