Hello jackrabbit-dev.
In the file:
/jackrabbit/src/test/org/apache/jackrabbit/test/api/SysViewContentHandler.java
starting from line 507:
--------------------------------------------------
for (int j = 0; j < size -1; j++) {
// we know that the order of the values
// of a mulitval prop is preserved during export
String val = (String)propElem.values.get(i);
--------------------------------------------------
possibly the last line should say:
--------------------------------------------------
String val = (String)propElem.values.get(j);
--------------------------------------------------
(use index "j" instead of "i" at the end)
Thank you.
--
Best regards, Maxim.
Anahoret Team.