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
Describe the bug
From a Java application, I can't access the suppressed failures of an EvaluationResult smoothly. The result returns the failures as a Scala list that is not easy to consume from Java code. See here
To Reproduce
Steps to reproduce the behavior:
From Java code, access the suppressed failures of an EvaluationResult.
final java.util.List<EvaluationFailure> failures = result.suppressedFailures();
Verify that the code snipped doesn't compile because it returns a Scala list
Expected behavior
From Java code, I can't access the list of evaluation failures natively (i.e. without any type transformation).
Describe the bug
From a Java application, I can't access the suppressed failures of an
EvaluationResult
smoothly. The result returns the failures as a Scala list that is not easy to consume from Java code. See hereTo Reproduce
Steps to reproduce the behavior:
EvaluationResult
.Expected behavior
From Java code, I can't access the list of evaluation failures natively (i.e. without any type transformation).
Related to #539.
Environment
1.17.0
The text was updated successfully, but these errors were encountered: