From ad771a9936414ad28530144818c2e78897359c80 Mon Sep 17 00:00:00 2001 From: David Dykstal Date: Tue, 2 Jan 2007 14:12:16 +0000 Subject: [PATCH] [cleanup] adhere to best practice regarding static initialization found by static analysis --- .../src/org/eclipse/rse/core/internal/RSECoreRegistry.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/internal/RSECoreRegistry.java b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/internal/RSECoreRegistry.java index fc3fa981eba..14e2a9fb0ee 100644 --- a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/internal/RSECoreRegistry.java +++ b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/internal/RSECoreRegistry.java @@ -27,7 +27,7 @@ import org.eclipse.rse.core.IRSESystemType; public class RSECoreRegistry implements IRSECoreRegistry { // the singleton instance - private static RSECoreRegistry instance; + private static RSECoreRegistry instance = null; // extension registry private IExtensionRegistry registry;