avoid to remove existing

This commit is contained in:
tom79 2019-07-24 17:55:07 +02:00
parent 341b96faee
commit 14ebbe0769
1 changed files with 1 additions and 2 deletions

View File

@ -572,8 +572,7 @@ public class OwnerStatusActivity extends BaseActivity implements OnRetrieveFeeds
while (it.hasNext() && i <= 10) {
Map.Entry pair = (Map.Entry)it.next();
System.out.println(pair.getKey() + " = " + pair.getValue());
text.append(i).append(" - ").append(pair.getKey()).append("").append(pair.getValue()).append("\r\n");
it.remove();
text.append(i).append(" - ").append(pair.getKey()).append("").append(pair.getValue()).append("\r\n");
i++;
}
tags.setText(text.toString());