We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b655701 commit e30abe1Copy full SHA for e30abe1
hibernate-core/src/main/java/org/hibernate/type/descriptor/jdbc/XmlHelper.java
@@ -335,7 +335,7 @@ else if ( !string.startsWith( COLLECTION_START_TAG ) || !string.endsWith( COLLEC
335
final ArrayList<Object> arrayList = new ArrayList<>();
336
final int end = fromArrayString(
337
string,
338
- false,
+ true,
339
options,
340
COLLECTION_START_TAG.length(),
341
arrayList,
@@ -646,7 +646,7 @@ private static int fromArrayString(
646
else {
647
arrayList.add( array );
648
}
649
- i = end + 1;
+ i = end;
650
651
652
throw new IllegalArgumentException( "XML not properly formed: " + string.substring( start ) );
0 commit comments