3.2 maintenance - Fix for 299054
diff --git a/buildnotes_jdt-core.html b/buildnotes_jdt-core.html
index 33f3c74..791f689 100644
--- a/buildnotes_jdt-core.html
+++ b/buildnotes_jdt-core.html
@@ -41,7 +41,7 @@
 <hr><h1>
 Eclipse Platform Build Notes<br>
 Java Development Tooling Core</h1>
-Eclipse SDK 3.2.x - January 6, 2010
+Eclipse SDK 3.2.x - %date% - 3.2.x
 <br>Project org.eclipse.jdt.core v_694_R32x
 (<a href="http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.jdt.core/?only_with_tag=v_694_R32x">cvs</a>).
 <h2>What's new in this drop</h2>
@@ -50,7 +50,8 @@
 </ul>
 
 <h3>Problem Reports Fixed</h3>
-<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=101610">101610</a>  Code assist not offered without transitive dependency
+<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=299054">299054</a> Clone of bug 296343 (3.2.2+)
+<br><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=101610">101610</a> Code assist not offered without transitive dependency
 
 <a name="v_693_R32x"></a>
 <hr><h1>
diff --git a/search/org/eclipse/jdt/internal/core/search/processing/JobManager.java b/search/org/eclipse/jdt/internal/core/search/processing/JobManager.java
index b640722..c26607a 100644
--- a/search/org/eclipse/jdt/internal/core/search/processing/JobManager.java
+++ b/search/org/eclipse/jdt/internal/core/search/processing/JobManager.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2006 IBM Corporation and others.
+ * Copyright (c) 2000, 2010 IBM Corporation and others.
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
@@ -300,7 +300,8 @@
 			this.processingThread.setDaemon(true);
 			// less prioritary by default, priority is raised if clients are actively waiting on it
 			this.processingThread.setPriority(Thread.NORM_PRIORITY-1); 
-			this.processingThread.start();
+			this.processingThread.setContextClassLoader(this.getClass().getClassLoader());
+			this.processingThread.start();		
 		}
 	}
 	/**