Skip to content

Commit

Permalink
Minor change.
Browse files Browse the repository at this point in the history
  • Loading branch information
khituras committed Nov 26, 2018
1 parent a7b03f8 commit bfe3df1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public void removeGeneralLabel(String... labels) {
}
Iterator<String> existingLabels = generalLabels.iterator();
while (existingLabels.hasNext()) {
String existingLabel = (String) existingLabels.next();
String existingLabel = existingLabels.next();
if (removeLabels.contains(existingLabel))
existingLabels.remove();
}
Expand Down

0 comments on commit bfe3df1

Please sign in to comment.