Skip to content

Commit 2a9b676

Browse files
author
Justin Lee
committed
removed unneeded method.
1 parent 2941687 commit 2a9b676

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

driver-core/src/main/com/mongodb/ServerAddress.java

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -129,16 +129,6 @@ public ServerAddress(final String host, final int port) {
129129
this.port = portToUse;
130130
}
131131

132-
private String join(final String delimiter, final String[] array, final int start, final int end) {
133-
StringBuilder builder = new StringBuilder();
134-
for (int i = start; i <= end; i++) {
135-
builder.append(array[i]);
136-
if (i < end) {
137-
builder.append(delimiter);
138-
}
139-
}
140-
return builder.toString();
141-
}
142132
@Override
143133
public boolean equals(final Object o) {
144134
if (this == o) {

0 commit comments

Comments
 (0)