Generally it is not recommended to modify a collection while it is being iterated over. This may lead to exceptions and it could be the source of incorrect or unspecified behaviors in the code.
This rule raises an issue when a method modifies the size of a collection, while the same collection is iterated.