Merge "Fix colon-separated string lists"
This commit is contained in:
committed by
Android (Google) Code Review
commit
c3f157492d
@@ -60,7 +60,7 @@ public class SettingsStringUtil {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
Iterator<T> it = iterator();
|
||||
if (it.hasNext()) {
|
||||
sb.append(it.next());
|
||||
sb.append(itemToString(it.next()));
|
||||
while (it.hasNext()) {
|
||||
sb.append(DELIMITER);
|
||||
sb.append(itemToString(it.next()));
|
||||
|
||||
Reference in New Issue
Block a user