Updated monitor

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@114424 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2015-04-27 08:54:41 +00:00
parent b9ecf92c0d
commit 08cb8692a0
1 changed files with 2 additions and 2 deletions

View File

@ -42,8 +42,8 @@ public class BackgroundOperationMonitorSession implements Serializable {
for (OperationMonitorSession ops : operationMonitorSessionList) {
if (ops.getTaskId().compareTo(
operationMonitorSession.getTaskId()) == 0) {
operationMonitorSessionList.remove(ops);
operationMonitorSessionList.add(operationMonitorSession);
int index=operationMonitorSessionList.indexOf(ops);
operationMonitorSessionList.set(index,operationMonitorSession);
return;
}
}