Example usage for org.apache.commons.collections4.map ListOrderedMap remove

List of usage examples for org.apache.commons.collections4.map ListOrderedMap remove

Introduction

In this page you can find the example usage for org.apache.commons.collections4.map ListOrderedMap remove.

Prototype

public V remove(final int index) 

Source Link

Document

Removes the element at the specified index.

Usage

From source file:org.apache.ofbiz.entity.transaction.TransactionUtil.java

/**
* Remove the stamp from stack (when resuming)
*//*from   ww w .j  a v  a 2s.c  o  m*/
private static void popTransactionStartStamp() {
    ListOrderedMap map = (ListOrderedMap) suspendedTxStartStamps.get();
    if (map.size() > 0) {
        transactionStartStamp.set((Timestamp) map.remove(map.lastKey()));
    } else {
        Debug.logError("Error in transaction handling - no saved start stamp found - using NOW.", module);
        transactionStartStamp.set(UtilDateTime.nowTimestamp());
    }
}