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

net.md_5.bungee.util.CaseInsensitiveMap Maven / Gradle / Ivy

There is a newer version: 1.20-R0.2
Show newest version
package net.md_5.bungee.util;

import gnu.trove.map.hash.TCustomHashMap;
import java.util.Map;

public class CaseInsensitiveMap extends TCustomHashMap
{

    public CaseInsensitiveMap()
    {
        super( CaseInsensitiveHashingStrategy.INSTANCE );
    }

    public CaseInsensitiveMap(Map map)
    {
        super( CaseInsensitiveHashingStrategy.INSTANCE, map );
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy