Fix javadoc errors, remove unused classes
This commit is contained in:
parent
fe53b0e76f
commit
1ed50dade8
19 changed files with 191 additions and 1287 deletions
|
@ -3596,7 +3596,7 @@ index 0000000000000000000000000000000000000000..b71404be2c82f7db35272b367af861e9
|
|||
+}
|
||||
diff --git a/src/main/java/ca/spottedleaf/concurrentutil/map/SWMRHashTable.java b/src/main/java/ca/spottedleaf/concurrentutil/map/SWMRHashTable.java
|
||||
new file mode 100644
|
||||
index 0000000000000000000000000000000000000000..a037bb57bedc0cde6b979f5c1f9669678fa7bd16
|
||||
index 0000000000000000000000000000000000000000..4289b984badd6f9167c86193454a630b9a40f9f5
|
||||
--- /dev/null
|
||||
+++ b/src/main/java/ca/spottedleaf/concurrentutil/map/SWMRHashTable.java
|
||||
@@ -0,0 +1,1673 @@
|
||||
|
@ -3724,7 +3724,7 @@ index 0000000000000000000000000000000000000000..a037bb57bedc0cde6b979f5c1f966967
|
|||
+ /**
|
||||
+ * 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..a037bb57bedc0cde6b979f5c1f966967
|
|||
+ * 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) {
|
||||
|
@ -5275,7 +5275,7 @@ index 0000000000000000000000000000000000000000..a037bb57bedc0cde6b979f5c1f966967
|
|||
+}
|
||||
diff --git a/src/main/java/ca/spottedleaf/concurrentutil/map/SWMRLong2ObjectHashTable.java b/src/main/java/ca/spottedleaf/concurrentutil/map/SWMRLong2ObjectHashTable.java
|
||||
new file mode 100644
|
||||
index 0000000000000000000000000000000000000000..1e98f778ffa0a7bb00ebccaaa8bde075183e41f0
|
||||
index 0000000000000000000000000000000000000000..94fca3c9b31ca4e40688209e419e93320b0f7c34
|
||||
--- /dev/null
|
||||
+++ b/src/main/java/ca/spottedleaf/concurrentutil/map/SWMRLong2ObjectHashTable.java
|
||||
@@ -0,0 +1,672 @@
|
||||
|
@ -5370,7 +5370,7 @@ index 0000000000000000000000000000000000000000..1e98f778ffa0a7bb00ebccaaa8bde075
|
|||
+ /**
|
||||
+ * 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..1e98f778ffa0a7bb00ebccaaa8bde075
|
|||
+ * 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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue