GUACAMOLE-96: Implement Iterator.remove() within ArbitraryAttributeMap's iterator.

This commit is contained in:
Michael Jumper
2018-02-01 12:43:24 -08:00
parent 4a7857571e
commit 1c012f4ed0

View File

@@ -148,6 +148,11 @@ public class ArbitraryAttributeMap extends HashMap<String, String> {
entry.getValue());
}
@Override
public void remove() {
iterator.remove();
}
};
}