[Mulgara-svn] r488 - branches/nw-interface/src/jar/query/java/org/mulgara/query/operation
pag at mulgara.org
pag at mulgara.org
Fri Oct 19 20:17:01 UTC 2007
Author: pag
Date: 2007-10-19 15:17:00 -0500 (Fri, 19 Oct 2007)
New Revision: 488
Modified:
branches/nw-interface/src/jar/query/java/org/mulgara/query/operation/Restore.java
Log:
Fixed the erroneous return of null for an unknown amount. Instead, return 0, as this needs to be auto-unboxed
Modified: branches/nw-interface/src/jar/query/java/org/mulgara/query/operation/Restore.java
===================================================================
--- branches/nw-interface/src/jar/query/java/org/mulgara/query/operation/Restore.java 2007-10-18 22:08:02 UTC (rev 487)
+++ branches/nw-interface/src/jar/query/java/org/mulgara/query/operation/Restore.java 2007-10-19 20:17:00 UTC (rev 488)
@@ -69,7 +69,7 @@
*/
protected Long doTx(Connection conn, InputStream inputStream) throws QueryException {
conn.getSession().restore(inputStream, getDestination(), getSource());
- return null;
+ return 0L;
}
}
More information about the Mulgara-svn
mailing list