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:
parent
fc1da4e112
commit
63859e035d
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
// We are not changing the archived data. If archive data exists in the entry, leave it.
|
||||||
// Otherwise remove the whole entry.
|
// Otherwise remove the whole entry.
|
||||||
if (elementDataEntry.fArchiveProperties != null) {
|
if (elementDataEntry.fArchiveProperties != null) {
|
||||||
elementDataEntry.fProperties.clear();
|
elementDataEntry.fProperties = null;
|
||||||
} else {
|
} else {
|
||||||
fCacheData.remove(entry.fKey);
|
fCacheData.remove(entry.fKey);
|
||||||
entry.remove();
|
entry.remove();
|
||||||
|
|
Loading…
Add table
Reference in a new issue