Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrkulp2006-02-21 17:16:48 +0000
committerrkulp2006-02-21 17:16:48 +0000
commitcb81572209d64e9435981280fda996c1b8065fb8 (patch)
tree51f60795ae7276d20d00812e822fac4726d950a8 /plugins/org.eclipse.jem.proxy/proxyRemote/org/eclipse/jem
parent54a3681b5a811cb9fd92930f873f0ea02b54386b (diff)
downloadwebtools.javaee-cb81572209d64e9435981280fda996c1b8065fb8.tar.gz
webtools.javaee-cb81572209d64e9435981280fda996c1b8065fb8.tar.xz
webtools.javaee-cb81572209d64e9435981280fda996c1b8065fb8.zip
Got rid of deprecated from Eclipse 3.2M5 build introduced new deprecations.
Diffstat (limited to 'plugins/org.eclipse.jem.proxy/proxyRemote/org/eclipse/jem')
-rw-r--r--plugins/org.eclipse.jem.proxy/proxyRemote/org/eclipse/jem/internal/proxy/remote/LocalProxyLaunchDelegate.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.jem.proxy/proxyRemote/org/eclipse/jem/internal/proxy/remote/LocalProxyLaunchDelegate.java b/plugins/org.eclipse.jem.proxy/proxyRemote/org/eclipse/jem/internal/proxy/remote/LocalProxyLaunchDelegate.java
index 32cd5bec4..8b6ed82a3 100644
--- a/plugins/org.eclipse.jem.proxy/proxyRemote/org/eclipse/jem/internal/proxy/remote/LocalProxyLaunchDelegate.java
+++ b/plugins/org.eclipse.jem.proxy/proxyRemote/org/eclipse/jem/internal/proxy/remote/LocalProxyLaunchDelegate.java
@@ -9,7 +9,7 @@
* IBM Corporation - initial API and implementation
*******************************************************************************/
/*
- * $RCSfile: LocalProxyLaunchDelegate.java,v $ $Revision: 1.32 $ $Date: 2005/12/14 21:23:46 $
+ * $RCSfile: LocalProxyLaunchDelegate.java,v $ $Revision: 1.33 $ $Date: 2006/02/21 17:16:44 $
*/
package org.eclipse.jem.internal.proxy.remote;
@@ -125,7 +125,7 @@ public class LocalProxyLaunchDelegate extends AbstractJavaLaunchConfigurationDel
for (int i = 0; i < contributors.length; i++) {
// Run in safe mode so that anything happens we don't go away.
final int ii = i;
- Platform.run(new ISafeRunnable() {
+ SafeRunner.run(new ISafeRunnable() {
public void handleException(Throwable exception) {
// Don't need to do anything. Platform.run logs it for me.
}

Back to the top