Skip to content

Commit e4f5ad6

Browse files
committed
Fix up after rebase
Signed-off-by: Ed Hillmann <edhillmann@yahoo.com>
1 parent fe1d131 commit e4f5ad6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CedarJava/src/main/java/com/cedarpolicy/model/PartialAuthorizationRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ public Builder context(Map<String, Value> context) {
160160
}
161161

162162
public Builder context(Context context) {
163-
this.context = Optional.of(ImmutableMap.copyOf(context.getContext()));
163+
this.context = Optional.of(Map.copyOf(context.getContext()));
164164
return this;
165165
}
166166

0 commit comments

Comments
 (0)