package org.warp.commonutils.type; import it.unimi.dsi.fastutil.objects.ObjectLinkedOpenHashSet; public class HashStackSet extends FastUtilStackSetWrapper { public HashStackSet() { super(new ObjectLinkedOpenHashSet<>()); } public HashStackSet(AddStrategy addStrategy) { super(new ObjectLinkedOpenHashSet<>(), addStrategy); } }