mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-03 07:05:24 +02:00
[160293] NPE on startup when only Core feature is installed
This commit is contained in:
parent
1d223fc9e5
commit
4740813d65
1 changed files with 2 additions and 2 deletions
|
@ -16,6 +16,7 @@
|
|||
* Martin Oberhuber (Wind River) - [186525] Move keystoreProviders to core
|
||||
* Martin Oberhuber (Wind River) - [181939] Deferred class loading for keystoreProviders
|
||||
* Martin Oberhuber (Wind River) - [175680] Deprecate obsolete ISystemRegistry methods
|
||||
* Martin Oberhuber (Wind River) - [160293] NPE on startup when only Core feature is installed
|
||||
********************************************************************************/
|
||||
package org.eclipse.rse.core;
|
||||
|
||||
|
@ -294,10 +295,9 @@ public class RSECorePlugin extends Plugin {
|
|||
for (int idx=0; idx<v.size(); idx++)
|
||||
_subsystemConfigurations[idx] = (ISubSystemConfigurationProxy)v.elementAt(idx);
|
||||
}
|
||||
Arrays.sort(_subsystemConfigurations, new SubSystemConfigurationProxyComparator());
|
||||
}
|
||||
|
||||
Arrays.sort(_subsystemConfigurations, new SubSystemConfigurationProxyComparator());
|
||||
|
||||
return _subsystemConfigurations;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue