We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e758db commit d9a5640Copy full SHA for d9a5640
spring-ai-core/src/test/java/org/springframework/ai/converter/BeanOutputConverterTest.java
@@ -69,6 +69,10 @@ String getSomeString() {
69
return this.someString;
70
}
71
72
+ public void setSomeString(String someString) {
73
+ this.someString = someString;
74
+ }
75
+
76
77
78
static class TestClassWithDateProperty {
@@ -87,6 +91,10 @@ LocalDate getSomeString() {
87
91
88
92
89
93
94
+ public void setSomeString(LocalDate someString) {
95
96
97
90
98
99
100
static class TestClassWithJsonAnnotations {
0 commit comments