HHH-10040 - Fix problem with incomplete Iterator impl

This commit is contained in:
Steve Ebersole 2015-08-19 12:21:57 -05:00
parent 2c1b7ca537
commit 11b358305a
1 changed files with 5 additions and 0 deletions

View File

@ -319,6 +319,11 @@ public class Caches {
public Object next() {
return entryIterator.next().getKey();
}
@Override
public void remove() {
throw new UnsupportedOperationException( "remove() not supported" );
}
};
}