application/org.openjdk.jmc.joverflow/src/main/java/org/openjdk/jmc/joverflow/util/NumberToObjectMap.java [121:175]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		@Override
		public int size() {
			return size;
		}

		@Override
		public boolean contains(Object o) {
			throw new UnsupportedOperationException();
		}

		@Override
		public void clear() {
			throw new UnsupportedOperationException();
		}
	}

	private final class ValueIterator implements Iterator<V> {

		private V next; // Next entry to return
		private int index; // Current slot

		ValueIterator() {
			if (size > 0) { // Advance to first entry
				V[] t = values;
				while (index < t.length && (next = t[index]) == null) {
					index++;
				}
			}
		}

		@Override
		public boolean hasNext() {
			return next != null;
		}

		@Override
		public V next() {
			V v = next;
			if (v == null) {
				throw new NoSuchElementException();
			}

			next = null;
			index++;
			V[] t = values;
			while (index < t.length && (next = t[index]) == null) {
				index++;
			}

			return v;
		}

		@Override
		public void remove() {
			throw new UnsupportedOperationException();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



application/org.openjdk.jmc.joverflow/src/main/java/org/openjdk/jmc/joverflow/util/ValueWitIntIdMap.java [163:216]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		@Override
		public int size() {
			return size;
		}

		@Override
		public boolean contains(Object o) {
			throw new UnsupportedOperationException();
		}

		@Override
		public void clear() {
			throw new UnsupportedOperationException();
		}
	}

	private final class ValueIterator implements Iterator<V> {
		private V next; // Next entry to return
		private int index; // Current slot

		ValueIterator() {
			if (size > 0) { // Advance to first entry
				V[] t = values;
				while (index < t.length && (next = t[index]) == null) {
					index++;
				}
			}
		}

		@Override
		public boolean hasNext() {
			return next != null;
		}

		@Override
		public V next() {
			V v = next;
			if (v == null) {
				throw new NoSuchElementException();
			}

			next = null;
			index++;
			V[] t = values;
			while (index < t.length && (next = t[index]) == null) {
				index++;
			}

			return v;
		}

		@Override
		public void remove() {
			throw new UnsupportedOperationException();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



