1
0
Fork 0
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:
Martin Oberhuber 2007-05-30 15:31:19 +00:00
parent 1d223fc9e5
commit 4740813d65

View file

@ -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;
}