1
0
Fork 0
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:
David McKnight 2007-08-31 14:41:30 +00:00
parent 5205b3765d
commit 2017ba6838
2 changed files with 5 additions and 2 deletions

View file

@ -1657,7 +1657,7 @@ public final class DataElement implements IDataElement
_isUpdated = false;
_isExpanded = true;
_buffer = null;
_nestedData = null;
//_nestedData = null;
}
}

View file

@ -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);