Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPawel Piech2012-09-04 17:44:08 +0000
committerPawel Piech2012-09-04 17:44:08 +0000
commit7eda8b1c2122ddd76399ea13c30fd539138797ea (patch)
tree2f773e05ac4ff46e91322cea70750c8ec47894ac /org.eclipse.debug.ui/ui/org/eclipse
parentd95b05878404be4391aaca5ec2ef46ef926bc8d3 (diff)
downloadeclipse.platform.debug-7eda8b1c2122ddd76399ea13c30fd539138797ea.tar.gz
eclipse.platform.debug-7eda8b1c2122ddd76399ea13c30fd539138797ea.tar.xz
eclipse.platform.debug-7eda8b1c2122ddd76399ea13c30fd539138797ea.zip
Bug 388238 - NPE when calling DebugUIPlugin.launchInBackground() from non-UI thread
Added a note in DebugUITools for calling on non-UI thread access.
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugUITools.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugUITools.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugUITools.java
index e104744e1..5c1b10395 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugUITools.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugUITools.java
@@ -91,6 +91,10 @@ import org.eclipse.ui.ide.undo.WorkspaceUndoUtil;
* Images retrieved from this facility should not be disposed.
* The images will be disposed when this plug-in is shutdown.
* </p>
+ * <p>
+ * Note: all methods in this class are expected to be called
+ * on the Display thread unless otherwise noted.
+ * </p>
* @noinstantiate This class is not intended to be instantiated by clients.
* @noextend This class is not intended to be subclassed by clients.
*/

Back to the top