From acd52a1936090eee11b3220f5c75ee37763773c7 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Thu, 15 Oct 2015 14:03:53 +0200 Subject: Remove deprectated classes and methods --- src/java/com/jogamp/common/util/ArrayHashSet.java | 24 ----------------------- 1 file changed, 24 deletions(-) (limited to 'src/java/com/jogamp/common/util/ArrayHashSet.java') diff --git a/src/java/com/jogamp/common/util/ArrayHashSet.java b/src/java/com/jogamp/common/util/ArrayHashSet.java index 8f61a8a..c0ac2fa 100644 --- a/src/java/com/jogamp/common/util/ArrayHashSet.java +++ b/src/java/com/jogamp/common/util/ArrayHashSet.java @@ -81,30 +81,6 @@ public class ArrayHashSet private final ArrayList data; // list of objects private final boolean supportNullValue; - /** - * @deprecated Use {@link #ArrayHashSet(boolean, int, float)} - */ - public ArrayHashSet() { - this(true, DEFAULT_INITIAL_CAPACITY, DEFAULT_LOAD_FACTOR); - } - - /** - * @param initialCapacity - * @deprecated Use {@link #ArrayHashSet(boolean, int, float)} - */ - public ArrayHashSet(final int initialCapacity) { - this(true, initialCapacity, DEFAULT_LOAD_FACTOR); - } - - /** - * @param initialCapacity - * @param loadFactor - * @deprecated Use {@link #ArrayHashSet(boolean, int, float)} - */ - public ArrayHashSet(final int initialCapacity, final float loadFactor) { - this(true, initialCapacity, loadFactor); - } - /** * * @param supportNullValue Use {@code true} for default behavior, i.e. {@code null} can be a valid value. -- cgit v1.2.3