Details
-
Sub-task
-
Status: Open
-
Major
-
Resolution: Unresolved
-
None
-
None
-
None
-
None
Description
@Override
public void updateLatestTrxInfo(SCMTransactionInfo info) {
if (info.compareTo(this.latestTrxInfo) <= 0)
this.latestTrxInfo = info;
}
Right now we throw an exception when such case happen. We could handle it in another way (e.g. like a fatal case so we stop the process).