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 275316 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/equinox/p2/publisher/eclipse/ConfigCUsAction.java (-1 / +7 lines)
Lines 322-328 Link Here
322
				continue;
322
				continue;
323
			}
323
			}
324
324
325
			IInstallableUnit cu = BundlesAction.createBundleConfigurationUnit(bundle.getSymbolicName(), Version.parseVersion(bundle.getVersion()), false, bundle, flavor + cuIdPrefix, filter);
325
			IInstallableUnit cu = null;
326
327
			if (this.version != null && !this.version.equals(Version.emptyVersion))
328
				cu = BundlesAction.createBundleConfigurationUnit(bundle.getSymbolicName(), this.version, false, bundle, flavor + cuIdPrefix, filter);
329
			else
330
				cu = BundlesAction.createBundleConfigurationUnit(bundle.getSymbolicName(), Version.parseVersion(bundle.getVersion()), false, bundle, flavor + cuIdPrefix, filter);
331
326
			if (cu != null) {
332
			if (cu != null) {
327
				// Product Query will run against the repo, make sure these CUs are in before then
333
				// Product Query will run against the repo, make sure these CUs are in before then
328
				// TODO review the aggressive addition to the metadata repo.  perhaps the query can query the result as well.
334
				// TODO review the aggressive addition to the metadata repo.  perhaps the query can query the result as well.

Return to bug 275316