We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c4597d commit 0579f01Copy full SHA for 0579f01
src/main/java/com/devil/utils/StrUtil.java
@@ -23,7 +23,7 @@ public static <T> String join(Collection<T> src, String delimer) {
23
while (it.hasNext()) {
24
T next = it.next();
25
if (next != null) {
26
- sb.append(delimer).append(it.next().toString());
+ sb.append(delimer).append(next.toString());
27
}
28
29
if (sb.length() > 0) {
0 commit comments