rpuch commented on code in PR #1246:
URL: https://github.com/apache/ignite-3/pull/1246#discussion_r1006845164
##########
modules/transactions/src/main/java/org/apache/ignite/internal/tx/TxMeta.java:
##########
@@ -24,13 +24,15 @@
import org.apache.ignite.internal.hlc.HybridTimestamp;
import org.apache.ignite.internal.replicator.ReplicationGroupId;
import org.apache.ignite.internal.tostring.S;
+import org.jetbrains.annotations.Nullable;
/** Transaction meta. */
public class TxMeta implements Serializable {
/** Serial version UID. */
private static final long serialVersionUID = -172513482743911860L;
/** Tx state. */
+ @Nullable
Review Comment:
I picked up the idea about nullable from tests as in one place there was
code like `new TxMeta(null, ...)`. It turned out to be wrong, removed the
annotation.
--
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]