1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 06:02:11 +02:00

[225650] - Fix an NPE.

This commit is contained in:
Pawel Piech 2009-03-11 22:43:42 +00:00
parent fc1da4e112
commit 63859e035d

View file

@ -718,7 +718,7 @@ public class AbstractCachingVMProvider extends AbstractVMProvider
// We are not changing the archived data. If archive data exists in the entry, leave it.
// Otherwise remove the whole entry.
if (elementDataEntry.fArchiveProperties != null) {
elementDataEntry.fProperties.clear();
elementDataEntry.fProperties = null;
} else {
fCacheData.remove(entry.fKey);
entry.remove();