Open GoogleCodeExporter opened 8 years ago
Hi all!
I have got the same problem, and I resolve it doing a quick and dirty fix like
this:
To the microemu-midp/src/main/java/org/microemu/RecordStoreManager.java
interface I added this:
boolean cleanRecordsOnCloseRecordStore();
And to the microemu-midp/src/main/java/org/microemu/util/RecordStoreImpl.java
class, in the method closeRecordStore(), I changed that "records.clear" by:
if (recordStoreManager.cleanRecordsOnCloseRecordStore()) {
records.clear();
}
The implementation of the MemoryRecordStoreManager, that method returns "true",
and for the others "false".
I attach some of the files.
I hope if can also work for you.
Best regards,
Jose
Original comment by j...@toro-asia.com
on 8 Feb 2011 at 2:00
Attachments:
Original issue reported on code.google.com by
michal.k...@gtempaccount.com
on 23 Aug 2010 at 2:01