Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlain Magloire2004-04-30 14:18:07 +0000
committerAlain Magloire2004-04-30 14:18:07 +0000
commitbf5f9acb6759b9d0a550a7e22e3092f180314f60 (patch)
tree21eb545b02fea6a95e4f27fb02150d437186ed81
parentf02c40bf6a8ee5b75023afabb785def9b72cd41c (diff)
downloadorg.eclipse.cdt-bf5f9acb6759b9d0a550a7e22e3092f180314f60.tar.gz
org.eclipse.cdt-bf5f9acb6759b9d0a550a7e22e3092f180314f60.tar.xz
org.eclipse.cdt-bf5f9acb6759b9d0a550a7e22e3092f180314f60.zip
We did not save the container in the map
-rw-r--r--core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/PathEntryManager.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/PathEntryManager.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/PathEntryManager.java
index 5ec1e82b88a..eceeb6dbc8d 100644
--- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/PathEntryManager.java
+++ b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/PathEntryManager.java
@@ -338,6 +338,7 @@ public class PathEntryManager implements IPathEntryStoreListener, IElementChange
// filter out this project - does not reference the container
// path
modifiedProjects[i] = null;
+ containerPut(affectedProject, containerPath, newContainer);
continue;
}
IPathEntryContainer oldContainer = containerGet(affectedProject, containerPath);

Back to the top