DATACASS-656 - Polishing.

Fix nullability annotation on Update.update(…) to accept null values.
This commit is contained in:
Mark Paluch
2020-01-08 13:49:13 +01:00
parent 3079bcf6e4
commit 15df0fdddb

View File

@@ -83,7 +83,7 @@ public class Update {
*
* @return a new {@link Update}.
*/
public static Update update(String columnName, Object value) {
public static Update update(String columnName, @Nullable Object value) {
return empty().set(columnName, value);
}