update characterids when tag was copied with dependencies

This commit is contained in:
honfika@gmail.com
2015-04-30 15:03:20 +02:00
parent a6847b6562
commit 1429757552
4 changed files with 85 additions and 23 deletions

View File

@@ -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 {