*** empty log message ***
diff --git a/buildnotes_jdt-core.html b/buildnotes_jdt-core.html
index 0f5dc42..3b49060 100644
--- a/buildnotes_jdt-core.html
+++ b/buildnotes_jdt-core.html
@@ -11,7 +11,7 @@
 <h1>
 Eclipse Platform Build Notes&nbsp;<br>
 Java Development Tooling Core</h1>
-Eclipse SDK Build 200205? - ?th May 2002 
+Eclipse SDK Build 20020507 - 7th May 2002 
 <br>Project org.eclipse.jdt.core v_245
 <h2>
 What's new in this drop</h2>
@@ -30,6 +30,8 @@
 </ul>
 
 <h3>Problem Reports Fixed</h3>
+<a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=15418">15418</a>
+Classpath container - may get the init-in-progress value back
 <a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=15334">15334</a>
 ast: Message should have length 
 <br><a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=15364">15364</a>
diff --git a/model/org/eclipse/jdt/core/JavaCore.java b/model/org/eclipse/jdt/core/JavaCore.java
index be87456..1be1fd7 100644
--- a/model/org/eclipse/jdt/core/JavaCore.java
+++ b/model/org/eclipse/jdt/core/JavaCore.java
@@ -1626,7 +1626,6 @@
 			}

 			if (!found){

 				affectedProjects[i] = null; // filter out this project - does not reference the container path

-				continue;

 			}

 			

 			Map perProjectContainers = (Map)JavaModelManager.Containers.get(affectedProject);

@@ -1640,8 +1639,10 @@
 					continue;

 				}

 			}

-			remaining++;

-			oldResolvedPaths[i] = affectedProject.getResolvedClasspath(true);

+			if (found){

+				remaining++;

+				oldResolvedPaths[i] = affectedProject.getResolvedClasspath(true);

+			}

 			perProjectContainers.put(containerPath, newContainer);

 		}