Remove unneeded @NonNull annotations
See gh-28797
This commit is contained in:
@@ -26,7 +26,6 @@ import java.util.Spliterator;
|
||||
import java.util.function.Consumer;
|
||||
|
||||
import io.r2dbc.spi.Statement;
|
||||
import org.jspecify.annotations.NonNull;
|
||||
import org.jspecify.annotations.Nullable;
|
||||
|
||||
import org.springframework.util.Assert;
|
||||
@@ -206,7 +205,7 @@ public class Bindings implements Iterable<Bindings.Binding> {
|
||||
}
|
||||
|
||||
@Override
|
||||
public @NonNull Object getValue() {
|
||||
public Object getValue() {
|
||||
return this.value;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user