Author: doogie
Date: Thu Apr 1 04:44:26 2010
New Revision: 929833
URL:
http://svn.apache.org/viewvc?rev=929833&view=revLog:
The non-serial methods now call the local serial variants, to help with
code coverage.
Modified:
ofbiz/trunk/framework/base/src/org/ofbiz/base/util/cache/JdbmRecordManager.java
Modified: ofbiz/trunk/framework/base/src/org/ofbiz/base/util/cache/JdbmRecordManager.java
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/base/src/org/ofbiz/base/util/cache/JdbmRecordManager.java?rev=929833&r1=929832&r2=929833&view=diff==============================================================================
--- ofbiz/trunk/framework/base/src/org/ofbiz/base/util/cache/JdbmRecordManager.java (original)
+++ ofbiz/trunk/framework/base/src/org/ofbiz/base/util/cache/JdbmRecordManager.java Thu Apr 1 04:44:26 2010
@@ -52,15 +52,15 @@ public class JdbmRecordManager implement
}
public long insert(Object o) throws IOException {
- return manager.insert(o, serial);
+ return insert(o, serial);
}
public void update(long l, Object o) throws IOException {
- manager.update(l, o, serial);
+ update(l, o, serial);
}
public Object fetch(long l) throws IOException {
- return manager.fetch(l, serial);
+ return fetch(l, serial);
}
public void close() throws IOException {