Skip to content

Commit

Permalink
fix: modify parameters order
Browse files Browse the repository at this point in the history
  • Loading branch information
giulia-tremolada committed Apr 19, 2024
1 parent 7b2199d commit d0c7624
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public DelegationId createDelegation(DelegationRequest delegation) {
public List<Delegation> getDelegations(String from, String to, String productId, String search, String taxCode, String mode, String order, Integer page, Integer size) {
log.trace("getDelegations start");
log.debug("getDelegations from = {}, to = {}, productId = {}", from, to, productId);
List<Delegation> result = msCoreConnector.getDelegations(from, to, productId, search, taxCode, order, mode, page, size);
List<Delegation> result = msCoreConnector.getDelegations(from, to, productId, search, taxCode, mode, order, page, size);
log.debug("getDelegations result = {}", result);
log.trace("getDelegations end");
return result;
Expand Down

0 comments on commit d0c7624

Please sign in to comment.