| Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/utilities/collection/SingleMapIterator.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/utilities/collection/SingleMapIterator.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/utilities/collection/SingleMapIterator.java
|
| index 9ade3993ab07f33d9919feb1059496d78af5c9f6..f66991efe33054480ffb8b17734d616e2855019f 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/utilities/collection/SingleMapIterator.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/utilities/collection/SingleMapIterator.java
|
| @@ -13,6 +13,8 @@
|
| */
|
| package com.google.dart.engine.utilities.collection;
|
|
|
| +import com.google.dart.engine.utilities.translation.DartOmit;
|
| +
|
| import java.util.Iterator;
|
| import java.util.Map;
|
| import java.util.Map.Entry;
|
| @@ -22,6 +24,7 @@ import java.util.NoSuchElementException;
|
| * Instances of the class {@code SingleMapIterator} implement an iterator that can be used to access
|
| * the entries in a single map.
|
| */
|
| +@DartOmit
|
| public class SingleMapIterator<K, V> implements MapIterator<K, V> {
|
| /**
|
| * Returns a new {@link SingleMapIterator} instance for the given {@link Map}.
|
|
|