shishkovilja commented on code in PR #12392:
URL: https://github.com/apache/ignite/pull/12392#discussion_r2416506048
##########
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/near/GridNearSingleGetRequest.java:
##########
@@ -144,20 +150,51 @@ public GridNearSingleGetRequest(
flags |= RECOVERY_FLAG_MASK;
}
+ /**
+ * Sets the key.
+ */
+ public void key(KeyCacheObject key) {
+ this.key = key;
+ }
+
/**
* @return Key.
*/
public KeyCacheObject key() {
return key;
}
+ /** Sets the flags. */
+ public void flags(byte flags) {
+ this.flags = flags;
+ }
+
+ /** @return Flags. */
+ public byte flags() {
Review Comment:
@Vladsz83 , as I can see flags is used only in
`GridDhtTxFinishResponse#checkCommitted` methods, so I suggest to remove it in
[IGNITE-26589](https://issues.apache.org/jira/browse/IGNITE-26589). Please add
TODO here.
--
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]