Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2008-04-10 20:36:58 +0000
committerThomas Watson2008-04-10 20:36:58 +0000
commit113b558e28fdb26bda67cfb3747e64e4614aa733 (patch)
tree5c094dc3d454afedf6205fb9bedfe4d0d76c047a /bundles/org.eclipse.osgi
parentb88f33b57751579390d3c493ac93dab733564860 (diff)
downloadrt.equinox.framework-113b558e28fdb26bda67cfb3747e64e4614aa733.tar.gz
rt.equinox.framework-113b558e28fdb26bda67cfb3747e64e4614aa733.tar.xz
rt.equinox.framework-113b558e28fdb26bda67cfb3747e64e4614aa733.zip
Bug 194943 Europa Crashes During Startup
Diffstat (limited to 'bundles/org.eclipse.osgi')
-rw-r--r--bundles/org.eclipse.osgi/defaultAdaptor/src/org/eclipse/osgi/baseadaptor/bundlefile/MRUBundleFileList.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi/defaultAdaptor/src/org/eclipse/osgi/baseadaptor/bundlefile/MRUBundleFileList.java b/bundles/org.eclipse.osgi/defaultAdaptor/src/org/eclipse/osgi/baseadaptor/bundlefile/MRUBundleFileList.java
index b13673efe..df25d3cfc 100644
--- a/bundles/org.eclipse.osgi/defaultAdaptor/src/org/eclipse/osgi/baseadaptor/bundlefile/MRUBundleFileList.java
+++ b/bundles/org.eclipse.osgi/defaultAdaptor/src/org/eclipse/osgi/baseadaptor/bundlefile/MRUBundleFileList.java
@@ -27,7 +27,7 @@ public class MRUBundleFileList implements EventDispatcher {
private static final int PROP_FILE_LIMIT_VALUE;
private static final ThreadLocal closingBundleFile = new ThreadLocal();
static {
- int propValue = 100; // TODO change this to "0" before the final release (see bug 194943)
+ int propValue = 0; // disable by default
try {
String prop = BundleFile.secureAction.getProperty(PROP_FILE_LIMIT);
if (prop != null)

Back to the top