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:
parent
2c785e0459
commit
be0a0e67c1
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue