Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2009-12-04 16:47:37 +0000
committerThomas Watson2009-12-04 16:47:37 +0000
commitc70ce41587bc9cfb230fb6a77bf69818abf7d5ba (patch)
treec520e923114a830c089a55ecb6a6470731f3b53a
parentfe6b645a63154ad50ddb192da8610fd7628b06ce (diff)
downloadrt.equinox.framework-c70ce41587bc9cfb230fb6a77bf69818abf7d5ba.tar.gz
rt.equinox.framework-c70ce41587bc9cfb230fb6a77bf69818abf7d5ba.tar.xz
rt.equinox.framework-c70ce41587bc9cfb230fb6a77bf69818abf7d5ba.zip
Bug 284397 - Plugin.isDebugging does not deliver true after Plugin.setDebugging has been called.
-rw-r--r--bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/framework/debug/FrameworkDebugOptions.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/framework/debug/FrameworkDebugOptions.java b/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/framework/debug/FrameworkDebugOptions.java
index dd9dc4b2c..698cf84c2 100644
--- a/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/framework/debug/FrameworkDebugOptions.java
+++ b/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/framework/debug/FrameworkDebugOptions.java
@@ -273,8 +273,6 @@ public class FrameworkDebugOptions implements DebugOptions, ServiceTrackerCustom
Object key = i.next();
options.put(key, ((String) options.get(key)).trim());
}
- if (options.size() == 0)
- options = null;
}
/*

Back to the top