We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e13d40 commit b2fe6d3Copy full SHA for b2fe6d3
src/main/java/org/springframework/data/repository/util/VavrCollections.java
@@ -60,7 +60,7 @@ public WrapperType getWrapperType() {
60
public Object convert(Object source) {
61
62
if (source instanceof io.vavr.collection.Seq) {
63
- return ((io.vavr.collection.Seq<?>) source).toJavaList();
+ return ((io.vavr.collection.Seq<?>) source).asJava();
64
}
65
66
if (source instanceof io.vavr.collection.Map) {
@@ -71,7 +71,7 @@ public Object convert(Object source) {
71
return ((io.vavr.collection.Set<?>) source).toJavaSet();
72
73
74
- throw new IllegalArgumentException("Unsupported Javaslang collection " + source.getClass());
+ throw new IllegalArgumentException("Unsupported Vavr collection " + source.getClass());
75
76
77
0 commit comments