HHH-10040 - Fix problem with incomplete Iterator impl
This commit is contained in:
parent
2c1b7ca537
commit
11b358305a
|
@ -319,6 +319,11 @@ public class Caches {
|
|||
public Object next() {
|
||||
return entryIterator.next().getKey();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void remove() {
|
||||
throw new UnsupportedOperationException( "remove() not supported" );
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue