Skip to content

Commit

Permalink
feat(policy-api): [eclipse-tractusx#803] reduce method visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
dsmf committed Jul 15, 2024
1 parent 5febbe8 commit 92c5dbc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public List<String> autocomplete(final Map<String, List<Policy>> bpnToPoliciesMa
}
}

public Stream<PolicyWithBpn> getPolicyWithBpnStream(final Map<String, List<Policy>> bpnToPoliciesMap) {
private Stream<PolicyWithBpn> getPolicyWithBpnStream(final Map<String, List<Policy>> bpnToPoliciesMap) {
return bpnToPoliciesMap.entrySet()
.stream()
.flatMap(bpnWithPolicies -> bpnWithPolicies.getValue()
Expand Down

0 comments on commit 92c5dbc

Please sign in to comment.