mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-03 07:05:24 +02:00
merges from IBM RSE - memory cleaning
This commit is contained in:
parent
5205b3765d
commit
2017ba6838
2 changed files with 5 additions and 2 deletions
|
@ -1657,7 +1657,7 @@ public final class DataElement implements IDataElement
|
|||
_isUpdated = false;
|
||||
_isExpanded = true;
|
||||
_buffer = null;
|
||||
_nestedData = null;
|
||||
//_nestedData = null;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1269,7 +1269,10 @@ public final class DataStore
|
|||
parent.addNestedData(newObject, false);
|
||||
}
|
||||
|
||||
_hashMap.put(id, newObject);
|
||||
synchronized(_hashMap)
|
||||
{
|
||||
_hashMap.put(id, newObject);
|
||||
}
|
||||
|
||||
if (_autoRefresh)
|
||||
refresh(parent);
|
||||
|
|
Loading…
Add table
Reference in a new issue