package d2;
import java.util.Iterator;
/* JADX INFO: renamed from: d2.c, reason: case insensitive filesystem */
/* JADX INFO: loaded from: classes.dex */
public abstract /* synthetic */ class AbstractC0520c {
public static /* synthetic */ String a(CharSequence charSequence, Iterable iterable) {
if (charSequence == null) {
throw new NullPointerException("delimiter");
}
StringBuilder sb = new StringBuilder();
Iterator it = iterable.iterator();
if (it.hasNext()) {
while (true) {
sb.append((CharSequence) it.next());
if (!it.hasNext()) {
break;
}
sb.append(charSequence);
}
}
return sb.toString();
}
}
Download file