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'm not sure I understand your question. It is returning null because it found no match to the bytes. Are you asking for partial match information or something? Can you provide an example and what output you would like?
@j256 Nullability annotations help both the IDE and us to understand which functions can return null and which function should never return null.
This helps with prevention of NPE, helps the IDE to offer various optimizations, helps to remove useless nullability checks, and also provides better support for Kotlin which forces developers to declare what can have a null value and what cannot.
For example, I've noticed there is some case that "findMatch" can return null:
The text was updated successfully, but these errors were encountered: