Add some missing javadoc

This commit is contained in:
Justin Abrahms 2022-08-07 22:19:32 -07:00
parent 4cbb87fbab
commit 9ea9e08165
No known key found for this signature in database
GPG Key ID: 599E2E12011DC474
1 changed files with 4 additions and 0 deletions

View File

@ -111,6 +111,10 @@ public class EvaluationContext {
/**
* Merges two EvaluationContext objects with the second overriding the first in case of conflict.
*
* @param ctx1 base context
* @param ctx2 overriding context
* @return resulting merged context
*/
public static EvaluationContext merge(EvaluationContext ctx1, EvaluationContext ctx2) {
EvaluationContext ec = new EvaluationContext();