DATACMNS-1024 - Reinstated root object method lookup behavior in EvaluationContextExtensionInformation.

The switch to Java 8 and thus to Collectors.toMap(…) to assemble the root object's methods as functions broke due to the fact that overloaded methods have the same name which causes a collision in keys when preparing the map of functions.

We now use the same approach as before, of letting later methods trump earlier ones as this fixes the original bug. Filed DATACMNS-1026 to keep track of that problem.

Related tickets: DATACMNS-1026.
This commit is contained in:
Oliver Gierke
2017-04-04 07:07:42 +02:00
parent c716ab839d
commit 37f78a3707
2 changed files with 55 additions and 1 deletions

View File

@@ -250,7 +250,8 @@ class EvaluationContextExtensionInformation {
return target.map(it -> methods.stream()//
.collect(Collectors.toMap(//
Method::getName, //
method -> new Function(method, it))))
method -> new Function(method, it), //
(left, right) -> right)))
.orElseGet(Collections::emptyMap);
}