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 273959
Collapse All | Expand All

(-)src/org/eclipse/equinox/internal/provisional/frameworkadmin/ConfigData.java (-1 / +1 lines)
Lines 113-119 Link Here
113
	}
113
	}
114
114
115
	public boolean removeBundle(BundleInfo bundleInfo) {
115
	public boolean removeBundle(BundleInfo bundleInfo) {
116
		if (bundleInfo == null || bundleInfo.getSymbolicName() == null || bundleInfo.getVersion() == null)
116
		if (bundleInfo == null)
117
			throw new IllegalArgumentException("Bundle info can't be null:" + bundleInfo); //$NON-NLS-1$
117
			throw new IllegalArgumentException("Bundle info can't be null:" + bundleInfo); //$NON-NLS-1$
118
		return bundlesList.remove(bundleInfo);
118
		return bundlesList.remove(bundleInfo);
119
	}
119
	}

Return to bug 273959