Added column alter checks in DB Upgrade handler and fixed some bugs

This commit is contained in:
Ziver Koc 2015-12-16 19:20:16 +01:00
parent 74e8c4aa68
commit 973dfdec35
3 changed files with 40 additions and 25 deletions

View file

@ -139,9 +139,9 @@ public class StringUtil {
StringBuilder str = new StringBuilder();
Iterator<?> it = list.iterator();
if(it.hasNext()) {
str.append(it.next());
str.append(it.next().toString());
while (it.hasNext()) {
str.append(delimiter).append(it.next());
str.append(delimiter).append(it.next().toString());
}
}
return str.toString();