DATACASS-656 - Polishing.
Fix nullability annotation on Update.update(…) to accept null values.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user