Skip to content

Commit

Permalink
fix: minor compilation fix after upstream refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
tglman committed Oct 7, 2024
1 parent c46540e commit 36346e4
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,14 @@ public Object get(Object key) {
@Override
public void put(OAtomicOperation atomicOperation, Object key, Object value) {}

@Override
public void put(OAtomicOperation atomicOperation, Object key, ORID value) {}

@Override
public boolean remove(OAtomicOperation atomicOperation, Object key, ORID value) {
return false;
}

@Override
public void update(
OAtomicOperation atomicOperation, Object key, OIndexKeyUpdater<Object> updater) {
Expand Down

0 comments on commit 36346e4

Please sign in to comment.