wernerdv commented on code in PR #12368:
URL: https://github.com/apache/ignite/pull/12368#discussion_r2436909437
##########
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/GridDistributedTxFinishRequest.java:
##########
@@ -254,28 +334,63 @@ public boolean isInvalidate() {
return invalidate;
}
+ /**
+ * @param invalidate Invalidate flag.
+ */
+ public void isInvalidate(boolean invalidate) {
+ this.invalidate = invalidate;
+ }
+
/**
* @return Base version.
*/
public GridCacheVersion baseVersion() {
return baseVer;
}
+ /**
+ * @param baseVer Base version.
+ */
+ public void baseVersion(GridCacheVersion baseVer) {
+ this.baseVer = baseVer;
+ }
+
/**
* @return Expected tx size.
*/
public int txSize() {
Review Comment:
You're right. Deleted 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]