Comment empty blocks.
This commit is contained in:
parent
ab9e84c47a
commit
71d41b4d48
|
@ -302,7 +302,9 @@ public abstract class AbstractReferenceMap<K, V> extends AbstractHashedMap<K, V>
|
|||
public void clear() {
|
||||
super.clear();
|
||||
// drain the queue
|
||||
while (queue.poll() != null) {} // NOPMD
|
||||
while (queue.poll() != null) {
|
||||
// empty
|
||||
}
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------
|
||||
|
@ -734,6 +736,7 @@ public abstract class AbstractReferenceMap<K, V> extends AbstractHashedMap<K, V>
|
|||
* This is the callback for custom "after purge" logic
|
||||
*/
|
||||
protected void onPurge() {
|
||||
// empty
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue