mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-29 20:05:35 +02:00
fixes [397995] RSEInitJob runs too early
This commit is contained in:
parent
5108908aa6
commit
447d39eec1
7 changed files with 10 additions and 12 deletions
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||||
Bundle-ManifestVersion: 2
|
Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.rse.core;singleton:=true
|
Bundle-SymbolicName: org.eclipse.rse.core;singleton:=true
|
||||||
Bundle-Version: 3.3.0.qualifier
|
Bundle-Version: 3.3.1.qualifier
|
||||||
Bundle-Activator: org.eclipse.rse.core.RSECorePlugin
|
Bundle-Activator: org.eclipse.rse.core.RSECorePlugin
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
Require-Bundle: org.eclipse.core.runtime,
|
Require-Bundle: org.eclipse.core.runtime,
|
||||||
|
|
|
@ -10,6 +10,6 @@
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.core</artifactId>
|
<artifactId>org.eclipse.rse.core</artifactId>
|
||||||
<version>3.3.0-SNAPSHOT</version>
|
<version>3.3.1.qualifier</version>
|
||||||
<packaging>eclipse-plugin</packaging>
|
<packaging>eclipse-plugin</packaging>
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/********************************************************************************
|
/********************************************************************************
|
||||||
* Copyright (c) 2006, 2011 IBM Corporation and others. All rights reserved.
|
* Copyright (c) 2006, 2013 IBM Corporation and others. All rights reserved.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* 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
|
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
@ -25,6 +25,7 @@
|
||||||
* Martin Oberhuber (Wind River) - [190231] Prepare API for UI/Non-UI Splitting
|
* Martin Oberhuber (Wind River) - [190231] Prepare API for UI/Non-UI Splitting
|
||||||
* David Dykstal (IBM) = [226958] add status values to waitForInitCompletion(phase)
|
* David Dykstal (IBM) = [226958] add status values to waitForInitCompletion(phase)
|
||||||
* David McKnight (IBM) - [354874] persistence manager hits a NPE during shutdown
|
* David McKnight (IBM) - [354874] persistence manager hits a NPE during shutdown
|
||||||
|
* David Dykstal (IBM) - [397995] RSEInitJob runs too early
|
||||||
********************************************************************************/
|
********************************************************************************/
|
||||||
package org.eclipse.rse.core;
|
package org.eclipse.rse.core;
|
||||||
|
|
||||||
|
@ -307,10 +308,6 @@ public class RSECorePlugin extends Plugin {
|
||||||
public void start(BundleContext context) throws Exception {
|
public void start(BundleContext context) throws Exception {
|
||||||
super.start(context);
|
super.start(context);
|
||||||
registerKeystoreProviders();
|
registerKeystoreProviders();
|
||||||
/*
|
|
||||||
RSEInitJob job = RSEInitJob.getInstance();
|
|
||||||
job.schedule();
|
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/********************************************************************************
|
/********************************************************************************
|
||||||
* Copyright (c) 2008, 2010 IBM Corporation and others. All rights reserved.
|
* Copyright (c) 2008, 2013 IBM Corporation and others. All rights reserved.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* 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
|
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
@ -11,7 +11,7 @@
|
||||||
* David Dykstal (IBM) = [226958] add status values to waitForInitCompletion(phase)
|
* David Dykstal (IBM) = [226958] add status values to waitForInitCompletion(phase)
|
||||||
* David Dykstal (IBM) - [235581] Initialize RSE should be a daemon job
|
* David Dykstal (IBM) - [235581] Initialize RSE should be a daemon job
|
||||||
* David McKnight (IBM) - [283033] remoteFileTypes extension point should include "xml" type
|
* David McKnight (IBM) - [283033] remoteFileTypes extension point should include "xml" type
|
||||||
* David Dykstal (IBM) - [] RSEInitJob runs too early
|
* David Dykstal (IBM) - [397995] RSEInitJob runs too early
|
||||||
********************************************************************************/
|
********************************************************************************/
|
||||||
package org.eclipse.rse.internal.core;
|
package org.eclipse.rse.internal.core;
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||||
Bundle-ManifestVersion: 2
|
Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.rse.ui;singleton:=true
|
Bundle-SymbolicName: org.eclipse.rse.ui;singleton:=true
|
||||||
Bundle-Version: 3.3.1.qualifier
|
Bundle-Version: 3.3.2.qualifier
|
||||||
Bundle-Activator: org.eclipse.rse.ui.RSEUIPlugin
|
Bundle-Activator: org.eclipse.rse.ui.RSEUIPlugin
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
Require-Bundle: org.eclipse.core.runtime,
|
Require-Bundle: org.eclipse.core.runtime,
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/********************************************************************************
|
/********************************************************************************
|
||||||
* Copyright (c) 2006, 2009 IBM Corporation and others. All rights reserved.
|
* Copyright (c) 2006, 2013 IBM Corporation and others. All rights reserved.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* 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
|
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
@ -34,6 +34,7 @@
|
||||||
* David McKnight (IBM) - [225506] [api][breaking] RSE UI leaks non-API types
|
* David McKnight (IBM) - [225506] [api][breaking] RSE UI leaks non-API types
|
||||||
* David McKnight (IBM) - [236505] Remote systems dialog not working
|
* David McKnight (IBM) - [236505] Remote systems dialog not working
|
||||||
* David McKnight (IBM) - [238288] use ImageRegistry to store/retrieve images for RSE label providers
|
* David McKnight (IBM) - [238288] use ImageRegistry to store/retrieve images for RSE label providers
|
||||||
|
* David Dykstal (IBM) - [397995] RSEInitJob runs too early
|
||||||
********************************************************************************/
|
********************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.ui;
|
package org.eclipse.rse.ui;
|
||||||
|
|
|
@ -10,6 +10,6 @@
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.ui</artifactId>
|
<artifactId>org.eclipse.rse.ui</artifactId>
|
||||||
<version>3.3.1-SNAPSHOT</version>
|
<version>3.3.2.qualifier</version>
|
||||||
<packaging>eclipse-plugin</packaging>
|
<packaging>eclipse-plugin</packaging>
|
||||||
</project>
|
</project>
|
||||||
|
|
Loading…
Add table
Reference in a new issue