enable osgi.bundlefile.limit at 100 (bug 194943)
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 df25d3c..b13673e 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 @@
 	private static final int PROP_FILE_LIMIT_VALUE;
 	private static final ThreadLocal closingBundleFile = new ThreadLocal();
 	static {
-		int propValue = 0; // disable by default
+		int propValue = 100; // TODO change this to "0" before the final release (see bug 194943)
 		try {
 			String prop = BundleFile.secureAction.getProperty(PROP_FILE_LIMIT);
 			if (prop != null)