Skip to content

Commit

Permalink
Add increment as identified in #10768 (#10769)
Browse files Browse the repository at this point in the history
  • Loading branch information
larry-safran committed Dec 19, 2023
1 parent 67b67f8 commit 7be2b6c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ public Endpoint(EquivalentAddressGroup eag) {
addrs = new String[eag.getAddresses().size()];
int i = 0;
for (SocketAddress address : eag.getAddresses()) {
addrs[i] = address.toString();
addrs[i++] = address.toString();
}
Arrays.sort(addrs);

Expand Down

0 comments on commit 7be2b6c

Please sign in to comment.