ibessonov commented on code in PR #1807:
URL: https://github.com/apache/ignite-3/pull/1807#discussion_r1144452583


##########
modules/core/src/main/java/org/apache/ignite/internal/causality/BaseVersionedValue.java:
##########
@@ -40,20 +40,16 @@
 import org.jetbrains.annotations.Nullable;
 
 /**
- * Parametrized type to store several versions of a value.
- *
- * <p>The value can be available through the causality token, which is 
represented by a {@code long}.
- *
- * @param <T> Type of real value.
+ * Base implementation of a {@code VersionedValue} intended to be used by 
other implementations.
  */
-public class AbstractVersionedValue<T> {
-    private final IgniteLogger log = 
Loggers.forClass(AbstractVersionedValue.class);
+class BaseVersionedValue<T> implements VersionedValue<T> {
+    private final IgniteLogger log = 
Loggers.forClass(BaseVersionedValue.class);

Review Comment:
   Thank you, I missed that reply somehow. A lot of stuff must be moved from 
core, that's for sure, we'll split it in two modules one day



-- 
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]

Reply via email to