Changeset 9144
- Timestamp:
- 07/04/08 15:50:59 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
helma/helma/trunk/src/helma/objectmodel/db/Transactor.java
r8791 r9144 35 35 36 36 // List of nodes to be updated 37 private HashMap dirtyNodes;37 private Map dirtyNodes; 38 38 39 39 // List of visited clean nodes 40 private HashMap cleanNodes;40 private Map cleanNodes; 41 41 42 42 // List of nodes whose child index has been modified 43 private HashSet parentNodes;43 private Set parentNodes; 44 44 45 45 // Is a transaction in progress? … … 51 51 52 52 // Transactions for SQL data sources 53 private HashMap sqlConnections;53 private Map sqlConnections; 54 54 55 55 // Set of SQL connections that already have been verified 56 private HashSet testedConnections;56 private Set testedConnections; 57 57 58 58 // when did the current transaction start? … … 76 76 this.nmgr = nmgr; 77 77 78 dirtyNodes = new HashMap();78 dirtyNodes = new LinkedHashMap(); 79 79 cleanNodes = new HashMap(); 80 80 parentNodes = new HashSet();