/* no qualifier */ void commit()
{
if ( !writeLock.isLocked() )
{
throw new BadTransactionStateException( "Cannot commit a write transaction when it's not started" );
}
Map<?, ?> pendingPages = recordManager.getPendingPages();
for ( Object object : pendingPages.keySet() )