{@inheritDoc} @exception IllegalStateException if this set is currently locked
()
| 227 | * @exception IllegalStateException if this set is currently locked |
| 228 | */ |
| 229 | @Override |
| 230 | public Iterator<T> iterator() { |
| 231 | if (locked) { |
| 232 | return new LockedIterator(super.iterator()); |
| 233 | } |
| 234 | return super.iterator(); |
| 235 | } |
| 236 | |
| 237 | |
| 238 | /** |
no outgoing calls
no test coverage detected