ascherbakoff commented on a change in pull request #400:
URL: https://github.com/apache/ignite-3/pull/400#discussion_r755829413



##########
File path: modules/api/src/main/java/org/apache/ignite/table/KeyValueView.java
##########
@@ -231,7 +231,7 @@
      * @param val Value to be associated with the specified key.
      * @return {@code True} if an old value was replaced, {@code false} 
otherwise.
      */
-    boolean replace(@NotNull K key, V val);
+    boolean replace(@NotNull K key, @NotNull V val);

Review comment:
       These arguments are validated using 
   Objects.requireNonNull(key);
   Objects.requireNonNull(value);




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