Removed useless comment

This commit is contained in:
lieght
2025-12-07 03:10:53 +01:00
parent 484cf1dcd3
commit 4b99cfe6af

View File

@@ -18,7 +18,6 @@ public class AsyncArraySubscriberStore implements SubscriberStore {
return new Subscriber<?, ?>[]{sub};
}
// FAST copy append
int len = arr.length;
Subscriber<?, ?>[] newArr = new Subscriber[len + 1];
System.arraycopy(arr, 0, newArr, 0, len);