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

Collapse All | Expand All

(-)src/org/eclipse/pde/internal/build/fetch/CVSFetchTaskFactory.java (-2 / +5 lines)
Lines 249-256 Link Here
249
			buffer.append(':');
249
			buffer.append(':');
250
			buffer.append(module);
250
			buffer.append(module);
251
251
252
			buffer.append(";project="); //$NON-NLS-1$
252
			String[] paths = module.split("/"); //$NON-NLS-1$
253
			buffer.append(projectName);
253
			if (paths != null && paths.length > 0 && !paths[paths.length - 1].equals(projectName)) {
254
				buffer.append(";project="); //$NON-NLS-1$
255
				buffer.append(projectName);
256
			}
254
257
255
			if (tagName != null) {
258
			if (tagName != null) {
256
				buffer.append(";tag="); //$NON-NLS-1$
259
				buffer.append(";tag="); //$NON-NLS-1$

Return to bug 243582