All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jhotdraw8.icollection.impl.champmap.MutableHashCollisionNode Maven / Gradle / Ivy

The newest version!
/*
 * @(#)MutableHashCollisionNode.java
 * Copyright © 2022 The authors and contributors of JHotDraw. MIT License.
 */

package org.jhotdraw8.icollection.impl.champmap;

import org.jhotdraw8.icollection.impl.IdentityObject;

final class MutableHashCollisionNode extends HashCollisionNode {

    private final IdentityObject mutator;

    MutableHashCollisionNode(IdentityObject mutator, int hash, Object[] entries, int entryLength) {
        super(hash, entries);
        this.mutator = mutator;
    }

    @Override
    protected IdentityObject getMutator() {
        return mutator;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy