Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: Core
-
Labels:None
-
Environment:Windows
-
Patch Submitted:Yes
-
Number of attachments :
Description
Inside the min method there are calls like this:
if (minMethodCall.isNoLambda()) {
for (Object value : (Iterable) result)
return min;
}
Which causes code not to run when the values are Long type.
The fix is to use (Number) value).doubleValue().