Description
When caching a method call with more than three arguments using MethodResultCache#put(Object value, Serializable keys), the 2nd argument is ignored, because it is overwritten by the 3rd argument in MethodCacheKey#init(Serializable keys).
That means that two method calls which are only different in their 2nd argument are cached in the same slot.
When the second call is cached, the first call is overwritten.
When the cache is later queried for the first call, the result of the second call is returned.