Skip to content

Commit 274d55c

Browse files
chore(syncmap): clean up javadocs
1 parent 5f0412f commit 274d55c

File tree

1 file changed

+6
-1
lines changed
  • collections/src/main/java/space/vectrix/sync/collections

1 file changed

+6
-1
lines changed

collections/src/main/java/space/vectrix/sync/collections/SyncMap.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1498,6 +1498,12 @@ public void clear() {
14981498
this.promote();
14991499
}
15001500

1501+
/**
1502+
* Locks for the initialize operation, then creates a mutable table to
1503+
* allow initial writes.
1504+
*
1505+
* @return the mutable table
1506+
*/
15011507
@SuppressWarnings({"unchecked", "rawtypes"})
15021508
/* package */ @Nullable Node<K, V>[] initialize() {
15031509
Node<K, V>[] source, destination;
@@ -1578,7 +1584,6 @@ public void clear() {
15781584
*
15791585
* @param node the forwarding node
15801586
* @return the next table
1581-
* @since 1.0.0
15821587
*/
15831588
/* package */ Node<K, V>@Nullable [] forward(final @NotNull ForwardingNode<K, V> node) {
15841589
if(this.amended) {

0 commit comments

Comments
 (0)