Skip to content

Commit

Permalink
Update ReadWriteBackingMap.java
Browse files Browse the repository at this point in the history
  • Loading branch information
mgamanho authored Sep 26, 2024
1 parent 51c4855 commit 3b87671
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1144,7 +1144,7 @@ protected Object putToInternalMap(Object binKey, Object binValue, long cExpiry)
}
else if (cExpiry <= CacheMap.EXPIRY_DEFAULT)
{
log("**MG** mapInternal.put(1)");
Base.log("**MG** mapInternal.put(1)");
return mapInternal.put(binKey, binValue);
}

Expand Down Expand Up @@ -1218,7 +1218,7 @@ protected Object removeInternal(Object oKey, boolean fBlind)
{
// set the value to BIN_ERASE_PENDING
queue.add(instantiateEntry(oKey, BIN_ERASE_PENDING, oValue, 0L), 0L);
log("**MG** mapInternal.put(3)");
Base.log("**MG** mapInternal.put(3)");
getInternalCache().put(oKey, BIN_ERASE_PENDING);
getPendingRemoves().add(oKey);
fQueued = true;
Expand Down Expand Up @@ -1604,7 +1604,7 @@ protected void putToInternalCache(Object oKey, Object oVal, long cMillis)
}
else
{
log("**MG** mapInternal.put(2)");
Base.log("**MG** mapInternal.put(2)");
mapInternal.put(oKey, oVal);
}
}
Expand Down

0 comments on commit 3b87671

Please sign in to comment.