[Joafip-svn] SF.net SVN: joafip:[2977] trunk
Brought to you by:
luc_peuvrier
|
From: <luc...@us...> - 2011-11-22 05:40:50
|
Revision: 2977
http://joafip.svn.sourceforge.net/joafip/?rev=2977&view=rev
Author: luc_peuvrier
Date: 2011-11-22 05:40:43 +0000 (Tue, 22 Nov 2011)
Log Message:
-----------
refactoring
Modified Paths:
--------------
trunk/joafip/src/main/java/net/sf/joafip/store/service/objectio/manager/IObjectIOManagerForProxyObjectIO.java
trunk/joafip/src/main/java/net/sf/joafip/store/service/objectio/manager/ObjectIOManager.java
trunk/joafip/src/main/java/net/sf/joafip/store/service/objectio/manager/SerializerObjectIOManager.java
trunk/joafip/src/main/java/net/sf/joafip/store/service/proxy/ProxyCallBack.java
trunk/joafip/src/test/java/net/sf/joafip/store/service/AbstractTestGarbage.java
trunk/joafip/src/test/java/net/sf/joafip/store/service/copier/AbstractTestDeepCopier.java
trunk/joafip/src/test/java/net/sf/joafip/store/service/objectio/serialize/AbstractObjectIOTest.java
trunk/joafip/src/test/java/net/sf/joafip/store/service/proxy/AbstractObjectIoManagerForProxyTest.java
trunk/joafip/src/test/java/net/sf/joafip/store/service/proxy/ProxyCallBackForTest.java
trunk/joafip/src/test/java/net/sf/joafip/store/service/proxy/TestProxyCreationConstructed.java
trunk/joafip-heapfile/src/main/java/net/sf/joafip/heapfile/service/IHeapDataManager.java
trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/entity/BlockDataManagerHeader.java
trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/entity/DataBlock.java
trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/service/AbstractTestHeapDataManager.java
trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/service/BlockDataManager.java
trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/service/TestHeapFileDataManagerBackup.java
trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/service/TestHeapFileDataManagerFreeing.java
trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/service/TestHeapFileDataMgrMemoryLeak.java
trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/service/TestHeapFileDataMgrWithScenario.java
Modified: trunk/joafip/src/main/java/net/sf/joafip/store/service/objectio/manager/IObjectIOManagerForProxyObjectIO.java
===================================================================
--- trunk/joafip/src/main/java/net/sf/joafip/store/service/objectio/manager/IObjectIOManagerForProxyObjectIO.java 2011-11-21 19:53:58 UTC (rev 2976)
+++ trunk/joafip/src/main/java/net/sf/joafip/store/service/objectio/manager/IObjectIOManagerForProxyObjectIO.java 2011-11-22 05:40:43 UTC (rev 2977)
@@ -169,9 +169,6 @@
void unsetProxyObjectState(ObjectAndPersistInfo objectAndItsClassInfo)
throws ObjectIOException, ObjectIOInvalidClassException;
- void saveAndUnsetProxyObjectState(ObjectAndPersistInfo objectAndItsClassInfo)
- throws ObjectIOException, ObjectIOInvalidClassException;
-
IProxyManagerForObjectIO getProxyManager2();
ClassInfoFactory getClassInfoFactory();
Modified: trunk/joafip/src/main/java/net/sf/joafip/store/service/objectio/manager/ObjectIOManager.java
===================================================================
--- trunk/joafip/src/main/java/net/sf/joafip/store/service/objectio/manager/ObjectIOManager.java 2011-11-21 19:53:58 UTC (rev 2976)
+++ trunk/joafip/src/main/java/net/sf/joafip/store/service/objectio/manager/ObjectIOManager.java 2011-11-22 05:40:43 UTC (rev 2977)
@@ -305,14 +305,6 @@
}
@Override
- public void saveAndUnsetProxyObjectState(
- final ObjectAndPersistInfo objectAndItsClassInfo)
- throws ObjectIOException, ObjectIOInvalidClassException {
- autoSave();
- unsetProxyObjectState(objectAndItsClassInfo);
- }
-
- @Override
protected DataRecordIdentifier associateNewDataRecordIdentifierToObject(
final ObjectAndPersistInfo objectAndPersistInfo)
throws ObjectIODataCorruptedException, ObjectIOException {
Modified: trunk/joafip/src/main/java/net/sf/joafip/store/service/objectio/manager/SerializerObjectIOManager.java
===================================================================
--- trunk/joafip/src/main/java/net/sf/joafip/store/service/objectio/manager/SerializerObjectIOManager.java 2011-11-21 19:53:58 UTC (rev 2976)
+++ trunk/joafip/src/main/java/net/sf/joafip/store/service/objectio/manager/SerializerObjectIOManager.java 2011-11-22 05:40:43 UTC (rev 2977)
@@ -375,13 +375,6 @@
throw new ObjectIOException(MUST_NOT_BE_CALLED);
}
- @Override
- public void saveAndUnsetProxyObjectState(
- final ObjectAndPersistInfo objectAndItsClassInfo)
- throws ObjectIOException, ObjectIOInvalidClassException {
- throw new ObjectIOException(MUST_NOT_BE_CALLED);
- }
-
/** not maintain in memory for joafip serialization in one data record */
@Override
public boolean isMaintainInMemoryEnabled() {
Modified: trunk/joafip/src/main/java/net/sf/joafip/store/service/proxy/ProxyCallBack.java
===================================================================
--- trunk/joafip/src/main/java/net/sf/joafip/store/service/proxy/ProxyCallBack.java 2011-11-21 19:53:58 UTC (rev 2976)
+++ trunk/joafip/src/main/java/net/sf/joafip/store/service/proxy/ProxyCallBack.java 2011-11-22 05:40:43 UTC (rev 2977)
@@ -65,8 +65,6 @@
private boolean wasLoaded;
- private boolean toUnload;
-
/**
* the proxy instance and persistence information for which is this proxy
* callback
@@ -264,10 +262,6 @@
@Override
public void constructorEnd$JOAFIP$() {
inObjectCount--;
- // if (autoSaveEnabled) {
- // unLoadAction(getInstance$JOAFIP$());
- // }
- toUnload = false;
assert inObjectCount >= 0 : "running in object count can not be negative, is "
+ inObjectCount;
}
@@ -276,7 +270,6 @@
@SuppressWarnings("PMD")
public void methodEnd$JOAFIP$() {
synchronized (storeMutex) {
- final ObjectAndPersistInfo instanceAndPersistInfo = getInstance$JOAFIP$();
inObjectCount--;
// ASSERTX
assert inObjectCount >= 0 : "running in object count can not be negative, is "
@@ -290,28 +283,11 @@
throw new ProxyInterceptException(exception);
}
}
- unLoadAction(instanceAndPersistInfo);
}
}
}
}
- private void unLoadAction(final ObjectAndPersistInfo instanceAndPersistInfo) {
- if (toUnload) {
- toUnload = false;
- loaded = false;
- assert instanceAndPersistInfo != null;
- try {
- objectIOManager
- .saveAndUnsetProxyObjectState(instanceAndPersistInfo);
- } catch (Exception exception) {
- LOGGER.error("method end interception error", exception);
- throw new ProxyInterceptException(
- instanceAndPersistInfo.toString(), exception);
- }
- }
- }
-
@Override
@SuppressWarnings("PMD")
public boolean isLoaded$JOAFIP$() throws ObjectIOException {
@@ -347,16 +323,14 @@
/*
* inObjectCount==0 because can not unload object when running its code
*/
- if (loaded) {
- if (!loading && (!exclusiveAccessSession || inObjectCount == 0)) {
- toUnload = false;
- loaded = false;
- objectIOManager.unsetProxyObjectState(getInstance$JOAFIP$());
- } else {
- toUnload = true;
- }
- } else {
- toUnload = false;
+ // FIXMELUC __________________________unload !exclusiveAccessSession
+ if (loaded && !loading && inObjectCount == 0) {
+ // if (loaded) {
+ // if (!loading && (!exclusiveAccessSession || inObjectCount == 0))
+ // {
+ loaded = false;
+ objectIOManager.unsetProxyObjectState(getInstance$JOAFIP$());
+ // }
}
// }
}
@@ -366,7 +340,6 @@
public void setIsLoaded$JOAFIP$() throws ObjectIOException {
if (!this.loaded) {
this.loaded = true;
- this.toUnload = false;
objectIOManager.newObjectLoaded();
}
}
@@ -376,7 +349,6 @@
public void setIsLoadedNoSave$JOAFIP$() {
if (!this.loaded) {
this.loaded = true;
- this.toUnload = false;
}
}
Modified: trunk/joafip/src/test/java/net/sf/joafip/store/service/AbstractTestGarbage.java
===================================================================
--- trunk/joafip/src/test/java/net/sf/joafip/store/service/AbstractTestGarbage.java 2011-11-21 19:53:58 UTC (rev 2976)
+++ trunk/joafip/src/test/java/net/sf/joafip/store/service/AbstractTestGarbage.java 2011-11-22 05:40:43 UTC (rev 2977)
@@ -67,6 +67,7 @@
visitedRecordManager = store.getVisitedRecordManager();
objectIoManager = store.getObjectIOManager();
heapRecordableManager = store.getHeapRecordableManager();
+ store.addToNotCheckMethod(Bob1.class);
}
@Override
Modified: trunk/joafip/src/test/java/net/sf/joafip/store/service/copier/AbstractTestDeepCopier.java
===================================================================
--- trunk/joafip/src/test/java/net/sf/joafip/store/service/copier/AbstractTestDeepCopier.java 2011-11-21 19:53:58 UTC (rev 2976)
+++ trunk/joafip/src/test/java/net/sf/joafip/store/service/copier/AbstractTestDeepCopier.java 2011-11-22 05:40:43 UTC (rev 2977)
@@ -329,13 +329,6 @@
}
@Override
- public void saveAndUnsetProxyObjectState(
- final ObjectAndPersistInfo objectAndItsClassInfo)
- throws ObjectIOException, ObjectIOInvalidClassException {
- throw new UnsupportedOperationException();
- }
-
- @Override
public void dataRecordIdentifierAssociatedToObjectSetted(
final ObjectAndPersistInfo objectAndItsClassInfo)
throws ObjectIOException {
Modified: trunk/joafip/src/test/java/net/sf/joafip/store/service/objectio/serialize/AbstractObjectIOTest.java
===================================================================
--- trunk/joafip/src/test/java/net/sf/joafip/store/service/objectio/serialize/AbstractObjectIOTest.java 2011-11-21 19:53:58 UTC (rev 2976)
+++ trunk/joafip/src/test/java/net/sf/joafip/store/service/objectio/serialize/AbstractObjectIOTest.java 2011-11-22 05:40:43 UTC (rev 2977)
@@ -368,13 +368,6 @@
// nothing to implement
}
- @Override
- public void saveAndUnsetProxyObjectState(
- final ObjectAndPersistInfo objectAndItsClassInfo)
- throws ObjectIOException, ObjectIOInvalidClassException {
- // nothing to implement
- }
-
public boolean isGarbageManagement() { // NOPMD
// nothing to implement
return false;
Modified: trunk/joafip/src/test/java/net/sf/joafip/store/service/proxy/AbstractObjectIoManagerForProxyTest.java
===================================================================
--- trunk/joafip/src/test/java/net/sf/joafip/store/service/proxy/AbstractObjectIoManagerForProxyTest.java 2011-11-21 19:53:58 UTC (rev 2976)
+++ trunk/joafip/src/test/java/net/sf/joafip/store/service/proxy/AbstractObjectIoManagerForProxyTest.java 2011-11-22 05:40:43 UTC (rev 2977)
@@ -167,13 +167,6 @@
}
@Override
- public void saveAndUnsetProxyObjectState(
- final ObjectAndPersistInfo objectAndItsClassInfo)
- throws ObjectIOException, ObjectIOInvalidClassException {
- setted = false;
- }
-
- @Override
@SuppressWarnings("PMD")
public ProxyManager2 getProxyManager2() {
// no implementation
@@ -187,7 +180,7 @@
@Override
public boolean isExclusiveAccessSession() {
- return false;
+ return true;
}
@Override
Modified: trunk/joafip/src/test/java/net/sf/joafip/store/service/proxy/ProxyCallBackForTest.java
===================================================================
--- trunk/joafip/src/test/java/net/sf/joafip/store/service/proxy/ProxyCallBackForTest.java 2011-11-21 19:53:58 UTC (rev 2976)
+++ trunk/joafip/src/test/java/net/sf/joafip/store/service/proxy/ProxyCallBackForTest.java 2011-11-22 05:40:43 UTC (rev 2977)
@@ -240,13 +240,6 @@
}
@Override
- public void saveAndUnsetProxyObjectState(
- final ObjectAndPersistInfo objectAndItsClassInfo)
- throws ObjectIOException, ObjectIOInvalidClassException {
- // no implementation
- }
-
- @Override
public boolean isExclusiveAccessSession() {
return false;
}
Modified: trunk/joafip/src/test/java/net/sf/joafip/store/service/proxy/TestProxyCreationConstructed.java
===================================================================
--- trunk/joafip/src/test/java/net/sf/joafip/store/service/proxy/TestProxyCreationConstructed.java 2011-11-21 19:53:58 UTC (rev 2976)
+++ trunk/joafip/src/test/java/net/sf/joafip/store/service/proxy/TestProxyCreationConstructed.java 2011-11-22 05:40:43 UTC (rev 2977)
@@ -72,6 +72,7 @@
new Class<?>[] { String.class },
new Object[] { "a name" }, storageInfo, this,
DataRecordIdentifier.LAST, true);
+ assertEquals(0, proxyManager2.getInObjectCount(object));
inConstruction = false;
assertTrue("must say is a proxy",
ProxyManager2.isProxyOrEnhanced(object));
Modified: trunk/joafip-heapfile/src/main/java/net/sf/joafip/heapfile/service/IHeapDataManager.java
===================================================================
--- trunk/joafip-heapfile/src/main/java/net/sf/joafip/heapfile/service/IHeapDataManager.java 2011-11-21 19:53:58 UTC (rev 2976)
+++ trunk/joafip-heapfile/src/main/java/net/sf/joafip/heapfile/service/IHeapDataManager.java 2011-11-22 05:40:43 UTC (rev 2977)
@@ -176,7 +176,7 @@
* @return data record identifier of first data record removed
* @throws HeapException
*/
- //FIXMELUC _____________________to test or remove or add more
+ // FIXMELUC ________to test or remove or add more
DataRecordIdentifier removeFirstDataRecord() throws HeapException;
/**
Modified: trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/entity/BlockDataManagerHeader.java
===================================================================
--- trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/entity/BlockDataManagerHeader.java 2011-11-21 19:53:58 UTC (rev 2976)
+++ trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/entity/BlockDataManagerHeader.java 2011-11-22 05:40:43 UTC (rev 2977)
@@ -49,13 +49,13 @@
private static final long serialVersionUID = 8579792598621073099L;
private int blockLength;
-
+
private DataRecordIdentifier nextIdentifier;
private long dataLength;
private int numberOfDataRecord;
-
+
public int getBlockLength() {
return blockLength;
}
@@ -116,8 +116,8 @@
private void set(final BlockDataManagerHeader header) {
this.dataLength = header.dataLength;
this.nextIdentifier = header.nextIdentifier;
- this.blockLength=header.blockLength;
- this.numberOfDataRecord=header.numberOfDataRecord;
+ this.blockLength = header.blockLength;
+ this.numberOfDataRecord = header.numberOfDataRecord;
}
public byte[] get() throws HeapException {
@@ -142,10 +142,10 @@
private void readObject(final ObjectInputStream input) throws IOException,
ClassNotFoundException {
- blockLength=input.readInt();
+ blockLength = input.readInt();
dataLength = input.readLong();
final long value = input.readLong();
nextIdentifier = new DataRecordIdentifier(value);
- numberOfDataRecord=input.readInt();
+ numberOfDataRecord = input.readInt();
}
}
Modified: trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/entity/DataBlock.java
===================================================================
--- trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/entity/DataBlock.java 2011-11-21 19:53:58 UTC (rev 2976)
+++ trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/entity/DataBlock.java 2011-11-22 05:40:43 UTC (rev 2977)
@@ -25,17 +25,18 @@
/**
*
* @author luc peuvrier
- *
+ *
*/
public class DataBlock {
private final long positionInFile;
-
+
private boolean toWrite;
-
+
private final byte[] data;
- public DataBlock(final long positionInFile,final boolean toWrite,final byte[] data) { //NOPMD
+ public DataBlock(final long positionInFile, final boolean toWrite,
+ final byte[] data) { // NOPMD
super();
this.positionInFile = positionInFile;
this.toWrite = toWrite;
@@ -55,6 +56,6 @@
}
public byte[] getData() {
- return data; //NOPMD
+ return data; // NOPMD
}
}
Modified: trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/service/AbstractTestHeapDataManager.java
===================================================================
--- trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/service/AbstractTestHeapDataManager.java 2011-11-21 19:53:58 UTC (rev 2976)
+++ trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/service/AbstractTestHeapDataManager.java 2011-11-22 05:40:43 UTC (rev 2977)
@@ -116,7 +116,8 @@
* @throws HeapException
*
*/
- protected void createHeapFileDataManager(final boolean removeFile) throws HeapException {
+ protected void createHeapFileDataManager(final boolean removeFile)
+ throws HeapException {
final HeapFileSetup setup = new HeapFileSetup(dataFile,
true/* crashSafeMode */, false/* useCacheMode */,
false/* deleteRenaming */, false/* clearResizeFile */, 1, 0,
@@ -127,15 +128,17 @@
heapDataManager.startService(removeFile);
}
- protected void createBlockDataManager(final boolean removeFile) throws HeapException {
- heapDataManager = new BlockDataManager(dataFilePath,20000);
+ protected void createBlockDataManager(final boolean removeFile)
+ throws HeapException {
+ heapDataManager = new BlockDataManager(dataFilePath, 20000);
heapDataManager.startService(removeFile);
}
-
- protected abstract void createHeap(final boolean removeFile) throws HeapException;
+ protected abstract void createHeap(final boolean removeFile)
+ throws HeapException;
+
protected abstract boolean manageFreeRecord();
-
+
/**
* @throws HeapException
*
Modified: trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/service/BlockDataManager.java
===================================================================
--- trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/service/BlockDataManager.java 2011-11-21 19:53:58 UTC (rev 2976)
+++ trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/service/BlockDataManager.java 2011-11-22 05:40:43 UTC (rev 2977)
@@ -195,7 +195,7 @@
final long position = getRecordPositionInfile(dataRecordIdentifier);
final boolean deleted;
final byte[] lengthData = new byte[2];
- final int read = read(position, 0, lengthData,true);
+ final int read = read(position, 0, lengthData, true);
if (read == 2) {
final int length = (((int) lengthData[0]) & 0xff) << 8
| (((int) lengthData[1]) & 0xff);
@@ -224,7 +224,7 @@
try {
final long position = getRecordPositionInfile(dataRecordIdentifier);
byte[] data = new byte[2];
- final int read = read(position, 0, data,true);
+ final int read = read(position, 0, data, true);
if (read == 2) {
final int length = (((int) data[0]) & 0xff) << 8
| (((int) data[1]) & 0xff);
@@ -233,7 +233,7 @@
data = null;// NOPMD
} else {
data = new byte[length];
- read(position, 2, data,true);
+ read(position, 2, data, true);
}
} else {
data = null;// NOPMD
@@ -260,7 +260,7 @@
final boolean created;
final byte[] lengthData = new byte[2];
int previousLength = -1;
- final int read = read(position, 0, lengthData,true);
+ final int read = read(position, 0, lengthData, true);
if (read == 2) {
previousLength = (((int) lengthData[0]) & 0xff) << 8
| (((int) lengthData[1]) & 0xff);
@@ -291,7 +291,7 @@
final long position = getRecordPositionInfile(dataRecordIdentifier);
final boolean hasDatarecord;
final byte[] lengthData = new byte[2];
- final int read = read(position, 0, lengthData,true);
+ final int read = read(position, 0, lengthData, true);
if (read == 2) {
final int length = (((int) lengthData[0]) & 0xff) << 8
| (((int) lengthData[1]) & 0xff);
@@ -337,7 +337,7 @@
long position = firstRecordPositionInfile;
final byte[] lengthData = new byte[2];
do {
- final int read = read(position, 0, lengthData,false);
+ final int read = read(position, 0, lengthData, false);
if (read == 2) {
final int length = (((int) lengthData[0]) & 0xff) << 8
| (((int) lengthData[1]) & 0xff);
@@ -475,7 +475,7 @@
throws FileIOException {
DataBlock dataBlock = cacheMap.get(position);
if (dataBlock == null) {
- dataBlock = readInFile(position,true);
+ dataBlock = readInFile(position, true);
if (dataBlock == null) {
final byte[] recordData = new byte[header.getBlockLength()];
dataBlock = new DataBlock(position, true, recordData);
Modified: trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/service/TestHeapFileDataManagerBackup.java
===================================================================
--- trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/service/TestHeapFileDataManagerBackup.java 2011-11-21 19:53:58 UTC (rev 2976)
+++ trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/service/TestHeapFileDataManagerBackup.java 2011-11-22 05:40:43 UTC (rev 2977)
@@ -38,7 +38,8 @@
super();
}
- public TestHeapFileDataManagerBackup(final String name) throws TestException {
+ public TestHeapFileDataManagerBackup(final String name)
+ throws TestException {
super(name);
}
Modified: trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/service/TestHeapFileDataManagerFreeing.java
===================================================================
--- trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/service/TestHeapFileDataManagerFreeing.java 2011-11-21 19:53:58 UTC (rev 2976)
+++ trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/service/TestHeapFileDataManagerFreeing.java 2011-11-22 05:40:43 UTC (rev 2977)
@@ -30,7 +30,8 @@
super();
}
- public TestHeapFileDataManagerFreeing(final String name) throws TestException {
+ public TestHeapFileDataManagerFreeing(final String name)
+ throws TestException {
super(name);
}
Modified: trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/service/TestHeapFileDataMgrMemoryLeak.java
===================================================================
--- trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/service/TestHeapFileDataMgrMemoryLeak.java 2011-11-21 19:53:58 UTC (rev 2976)
+++ trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/service/TestHeapFileDataMgrMemoryLeak.java 2011-11-22 05:40:43 UTC (rev 2977)
@@ -31,7 +31,8 @@
super();
}
- public TestHeapFileDataMgrMemoryLeak(final String name) throws TestException {
+ public TestHeapFileDataMgrMemoryLeak(final String name)
+ throws TestException {
super(name);
}
Modified: trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/service/TestHeapFileDataMgrWithScenario.java
===================================================================
--- trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/service/TestHeapFileDataMgrWithScenario.java 2011-11-21 19:53:58 UTC (rev 2976)
+++ trunk/joafip-heapfile/src/test/java/net/sf/joafip/heapfile/service/TestHeapFileDataMgrWithScenario.java 2011-11-22 05:40:43 UTC (rev 2977)
@@ -47,7 +47,8 @@
super();
}
- public TestHeapFileDataMgrWithScenario(final String name) throws TestException {
+ public TestHeapFileDataMgrWithScenario(final String name)
+ throws TestException {
super(name);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|