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
Currently the multimethod implementation relies on returning an option for the return type if a method matched.
If the method has a void signature then the Java reflection API returns null for void methods, this is then converted into a Option.none, thereby incorrectly signaling the method did not match.
The text was updated successfully, but these errors were encountered:
Currently the multimethod implementation relies on returning an option for the return type if a method matched.
If the method has a void signature then the Java reflection API returns null for void methods, this is then converted into a Option.none, thereby incorrectly signaling the method did not match.
The text was updated successfully, but these errors were encountered: