You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by ju...@apache.org on 2006/02/01 09:16:16 UTC

svn commit: r374018 - /incubator/jackrabbit/branches/0.9/jcr-rmi/src/java/org/apache/jackrabbit/rmi/server/ServerRow.java

Author: jukka
Date: Wed Feb  1 00:16:13 2006
New Revision: 374018

URL: http://svn.apache.org/viewcvs?rev=374018&view=rev
Log:
JCR-109: Backported the ServerRow.getValues() fix to the 0.9 branch.

Modified:
    incubator/jackrabbit/branches/0.9/jcr-rmi/src/java/org/apache/jackrabbit/rmi/server/ServerRow.java

Modified: incubator/jackrabbit/branches/0.9/jcr-rmi/src/java/org/apache/jackrabbit/rmi/server/ServerRow.java
URL: http://svn.apache.org/viewcvs/incubator/jackrabbit/branches/0.9/jcr-rmi/src/java/org/apache/jackrabbit/rmi/server/ServerRow.java?rev=374018&r1=374017&r2=374018&view=diff
==============================================================================
--- incubator/jackrabbit/branches/0.9/jcr-rmi/src/java/org/apache/jackrabbit/rmi/server/ServerRow.java (original)
+++ incubator/jackrabbit/branches/0.9/jcr-rmi/src/java/org/apache/jackrabbit/rmi/server/ServerRow.java Wed Feb  1 00:16:13 2006
@@ -55,7 +55,7 @@
 
     /** {@inheritDoc} */
     public Value[] getValues() throws RepositoryException, RemoteException {
-        return row.getValues();
+        return SerialValueFactory.makeSerialValueArray(row.getValues());
     }
 
     /** {@inheritDoc} */