1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 23:25:26 +02:00

[cleanup] adhere to best practice regarding static initialization found by static analysis

This commit is contained in:
David Dykstal 2007-01-02 14:24:27 +00:00
parent 2c785e0459
commit be0a0e67c1

View file

@ -34,9 +34,9 @@ import org.osgi.framework.BundleContext;
*/
public class RSECorePlugin extends Plugin {
private static RSECorePlugin plugin; // the singleton instance of this plugin
private static RSECorePlugin plugin = null; // the singleton instance of this plugin
private Logger logger = null;
private ISystemRegistry _registry;
private ISystemRegistry _registry = null;
private IRSEPersistenceManager _persistenceManager = null;
/**