Skip to content

Commit

Permalink
Add increment as identified in #10768 (#10769) (#10770)
Browse files Browse the repository at this point in the history
  • Loading branch information
larry-safran committed Dec 19, 2023
1 parent b758702 commit 121f23f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,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 121f23f

Please sign in to comment.