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

Collapse All | Expand All

(-)src/org/eclipse/pde/internal/build/FetchScriptGenerator.java (-2 / +2 lines)
Lines 557-564 Link Here
557
		fetchTags = new Properties();
557
		fetchTags = new Properties();
558
		String[] entries = Utils.getArrayFromString(value);
558
		String[] entries = Utils.getArrayFromString(value);
559
		//Backward compatibility
559
		//Backward compatibility
560
		if (entries.length == 1) {
560
		if (entries.length == 1 && (entries[0].indexOf('=') == -1)) {
561
			fetchTags.put(CVSFetchTaskFactory.OVERRIDE_TAG, fetchTags);
561
			fetchTags.put(CVSFetchTaskFactory.OVERRIDE_TAG, entries[0]);
562
			return;
562
			return;
563
		}
563
		}
564
		for (int i = 0; i < entries.length; i++) {
564
		for (int i = 0; i < entries.length; i++) {

Return to bug 34757