Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 89964 Details for
Bug 192178
[ErrorHandling] Bad error handling in Workbench.runUI()
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
Patch
clipboard.txt (text/plain), 1.05 KB, created by
Krzysztof Daniel
on 2008-02-18 05:31:32 EST
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Krzysztof Daniel
Created:
2008-02-18 05:31:32 EST
Size:
1.05 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.ui.workbench >Index: Eclipse UI/org/eclipse/ui/internal/Workbench.java >=================================================================== >RCS file: /cvsroot/eclipse/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java,v >retrieving revision 1.452 >diff -u -r1.452 Workbench.java >--- Eclipse UI/org/eclipse/ui/internal/Workbench.java 12 Feb 2008 13:39:48 -0000 1.452 >+++ Eclipse UI/org/eclipse/ui/internal/Workbench.java 18 Feb 2008 10:30:15 -0000 >@@ -2358,13 +2358,13 @@ > runEventLoop(handler, display); > } > >- } catch (final Exception e) { >+ } catch (final Throwable t) { > if (!display.isDisposed()) { >- handler.handleException(e); >+ handler.handleException(t); > } else { > String msg = "Exception in Workbench.runUI after display was disposed"; //$NON-NLS-1$ > WorkbenchPlugin.log(msg, new Status(IStatus.ERROR, >- WorkbenchPlugin.PI_WORKBENCH, 1, msg, e)); >+ WorkbenchPlugin.PI_WORKBENCH, 1, msg, t)); > } > } finally { > // mandatory clean up
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 192178
: 89964 |
89965