tkalkirill commented on code in PR #1652:
URL: https://github.com/apache/ignite-3/pull/1652#discussion_r1105566837
##########
modules/page-memory/src/main/java/org/apache/ignite/internal/pagememory/tree/BplusTree.java:
##########
@@ -6117,35 +6194,37 @@ private void iterate() throws
IgniteInternalCheckedException {
/**
* Forward cursor.
*/
- private final class ForwardCursor extends AbstractForwardCursor implements
Cursor<T> {
+ private final class ForwardCursor<R> extends AbstractForwardCursor
implements Cursor<R> {
/** Implementation specific argument. */
- @Nullable
- final Object arg;
+ private final @Nullable Object arg;
- /** Rows. */
- @Nullable
- private T[] rows = (T[]) OBJECT_EMPTY_ARRAY;
+ private @Nullable R @Nullable [] results = (R[]) OBJECT_EMPTY_ARRAY;
Review Comment:
Tried to fix it.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]