diff options
author | Sven Gothel <[email protected]> | 2015-10-15 14:03:53 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2015-10-15 14:03:53 +0200 |
commit | acd52a1936090eee11b3220f5c75ee37763773c7 (patch) | |
tree | 239c23ecc917650bd59d9aaddb1b76b9a9d01197 /src/java/com/jogamp/common/util/ArrayHashSet.java | |
parent | f829ccd1696e3b4016f11319f7b6148a8a0a2c78 (diff) |
Remove deprectated classes and methods
Diffstat (limited to 'src/java/com/jogamp/common/util/ArrayHashSet.java')
-rw-r--r-- | src/java/com/jogamp/common/util/ArrayHashSet.java | 24 |
1 files changed, 0 insertions, 24 deletions
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 @@ -82,30 +82,6 @@ public class ArrayHashSet<E> 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. * Use {@code false} if {@code null} is not a valid value, |