* Rename Transaction class to XmlTransaction.
This commit is contained in:
parent
821f69150f
commit
a44af35c59
1 changed files with 2 additions and 2 deletions
|
@ -171,7 +171,7 @@ public final class XmlDatabase implements IDatabase {
|
||||||
* @throws DatabaseException
|
* @throws DatabaseException
|
||||||
*/
|
*/
|
||||||
public ITransaction beginTransaction() throws DatabaseException {
|
public ITransaction beginTransaction() throws DatabaseException {
|
||||||
return new Transaction();
|
return new XmlTransaction();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -366,7 +366,7 @@ public final class XmlDatabase implements IDatabase {
|
||||||
return encoding;
|
return encoding;
|
||||||
}
|
}
|
||||||
|
|
||||||
class Transaction implements ITransaction {
|
class XmlTransaction implements ITransaction {
|
||||||
|
|
||||||
ArrayList writeFiles = new ArrayList();
|
ArrayList writeFiles = new ArrayList();
|
||||||
ArrayList deleteFiles = new ArrayList();
|
ArrayList deleteFiles = new ArrayList();
|
||||||
|
|
Loading…
Add table
Reference in a new issue