Skip to content

Commit

Permalink
HSEARCH-4574 Fix bug in EventContext.concat
Browse files Browse the repository at this point in the history
  • Loading branch information
yrodiere committed May 31, 2023
1 parent 2df5d7b commit 8d1e8cc
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -31,7 +31,7 @@ public static EventContext create(EventContextElement firstElement, EventContext
public static EventContext concat(EventContext first, EventContext... others) {
EventContext result = first;
for ( EventContext other : others ) {
result = first.append( other );
result = result.append( other );
}
return result;
}
Expand Down

0 comments on commit 8d1e8cc

Please sign in to comment.