Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 209013 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/equinox/ds/SCRManager.java (-5 / +7 lines)
Lines 76-84 Link Here
76
		threadPoolManagerTracker.open();
76
		threadPoolManagerTracker.open();
77
		if (Activator.startup)
77
		if (Activator.startup)
78
			Activator.timeLog(111); /*
78
			Activator.timeLog(111); /*
79
															 * 111 = "Threadpool service tracker opened
79
																	 * 111 = "Threadpool service tracker opened
80
															 * for "
80
																	 * for "
81
															 */
81
																	 */
82
82
83
		resolver = new Resolver(this);
83
		resolver = new Resolver(this);
84
		if (Activator.startup)
84
		if (Activator.startup)
Lines 88-96 Link Here
88
		if (Activator.startup)
88
		if (Activator.startup)
89
			Activator.timeLog(105); /* 105 = "addBundleListener() method took " */
89
			Activator.timeLog(105); /* 105 = "addBundleListener() method took " */
90
90
91
		String vendor = System.getProperty("org.osgi.framework.vendor", "ProSyst");
91
		String vendor = bc.getProperty("org.osgi.framework.vendor");
92
		if (vendor == null)
93
			vendor = "ProSyst";
92
94
93
		String storageClass = System.getProperty("scr.storage.class");
95
		String storageClass = bc.getProperty("scr.storage.class");
94
		if (storageClass == null) {
96
		if (storageClass == null) {
95
			if (vendor.equals("Eclipse")) {
97
			if (vendor.equals("Eclipse")) {
96
				storageClass = "org.eclipse.equinox.ds.storage.file.FileStorage";
98
				storageClass = "org.eclipse.equinox.ds.storage.file.FileStorage";

Return to bug 209013