Merge branch '3.2.x' into 3.3.x

Closes gh-41633
This commit is contained in:
Andy Wilkinson
2024-07-29 11:57:09 +01:00
8 changed files with 146 additions and 5 deletions

View File

@@ -24,7 +24,6 @@ import java.util.ArrayList;
import java.util.EnumMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import com.jayway.jsonpath.JsonPath;
@@ -616,8 +615,8 @@ class ValueObjectBinderTests {
private final Object value;
ExampleFailingConstructorBean(String name, String value) {
Objects.requireNonNull(name, "'name' must be not null.");
Objects.requireNonNull(value, "'value' must be not null.");
Assert.notNull(name, "'name' must be not null.");
Assert.notNull(value, "'value' must be not null.");
this.name = name;
this.value = value;
}