Skip to content

Commit

Permalink
chore: reorder method arguments (eclipse-edc#4057)
Browse files Browse the repository at this point in the history
  • Loading branch information
paullatzelsperger authored Mar 28, 2024
1 parent 600f8ef commit 2add15e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public Result<DataAddress> authorize(String token, Map<String, Object> requestDa
var accessTokenDataResult = accessTokenService.resolve(token);

return accessTokenDataResult
.compose(atd -> accessControlService.checkAccess(atd.claimToken(), atd.dataAddress(), atd.additionalProperties(), requestData))
.compose(atd -> accessControlService.checkAccess(atd.claimToken(), atd.dataAddress(), requestData, atd.additionalProperties()))
.map(u -> accessTokenDataResult.getContent().dataAddress());
}

Expand Down

0 comments on commit 2add15e

Please sign in to comment.