Fix javadoc errors, remove unused classes
This commit is contained in:
@@ -3724,7 +3724,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||
+ /**
|
||||
+ * Constructs this map with the specified capacity and load factor.
|
||||
+ * @param capacity specified capacity, > 0
|
||||
+ * @param loadFactor specified load factor, > 0 && finite
|
||||
+ * @param loadFactor specified load factor, > 0 and finite
|
||||
+ */
|
||||
+ public SWMRHashTable(final int capacity, final float loadFactor) {
|
||||
+ final int tableSize = getCapacityFor(capacity);
|
||||
@@ -3772,7 +3772,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||
+ * with the specified load factor.
|
||||
+ * All of the specified map's entries are copied into this map.
|
||||
+ * @param capacity specified capacity, > 0
|
||||
+ * @param loadFactor specified load factor, > 0 && finite
|
||||
+ * @param loadFactor specified load factor, > 0 and finite
|
||||
+ * @param other The specified map.
|
||||
+ */
|
||||
+ public SWMRHashTable(final int capacity, final float loadFactor, final Map<K, V> other) {
|
||||
@@ -5370,7 +5370,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||
+ /**
|
||||
+ * Constructs this map with the specified capacity and load factor.
|
||||
+ * @param capacity specified capacity, > 0
|
||||
+ * @param loadFactor specified load factor, > 0 && finite
|
||||
+ * @param loadFactor specified load factor, > 0 and finite
|
||||
+ */
|
||||
+ public SWMRLong2ObjectHashTable(final int capacity, final float loadFactor) {
|
||||
+ final int tableSize = getCapacityFor(capacity);
|
||||
@@ -5418,7 +5418,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||
+ * with the specified load factor.
|
||||
+ * All of the specified map's entries are copied into this map.
|
||||
+ * @param capacity specified capacity, > 0
|
||||
+ * @param loadFactor specified load factor, > 0 && finite
|
||||
+ * @param loadFactor specified load factor, > 0 and finite
|
||||
+ * @param other The specified map.
|
||||
+ */
|
||||
+ public SWMRLong2ObjectHashTable(final int capacity, final float loadFactor, final SWMRLong2ObjectHashTable<V> other) {
|
||||
|
||||
Reference in New Issue
Block a user