mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-05 13:14:53 +00:00
update characterids when tag was copied with dependencies
This commit is contained in:
@@ -384,10 +384,10 @@ public class Helper {
|
||||
return sb.toString();
|
||||
}
|
||||
|
||||
public static String joinStrings(List<String> arr, String glue) {
|
||||
public static String joinStrings(Iterable<?> arr, String glue) {
|
||||
StringBuilder ret = new StringBuilder();
|
||||
boolean first = true;
|
||||
for (String s : arr) {
|
||||
for (Object s : arr) {
|
||||
if (!first) {
|
||||
ret.append(glue);
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user