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

Collapse All | Expand All

(-)a/ui/org.eclipse.pde.core/src/org/eclipse/pde/internal/core/exports/FeatureExportOperation.java (-3 / +3 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2006, 2011 IBM Corporation and others.
2
 * Copyright (c) 2006, 2012 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 7-12 Link Here
7
 *
7
 *
8
 * Contributors:
8
 * Contributors:
9
 *     IBM Corporation - initial API and implementation
9
 *     IBM Corporation - initial API and implementation
10
 *     Christian Walther (Indel AG) - [325368] avoid use of stale p2 cache
10
 *******************************************************************************/
11
 *******************************************************************************/
11
package org.eclipse.pde.internal.core.exports;
12
package org.eclipse.pde.internal.core.exports;
12
13
Lines 998-1004 public class FeatureExportOperation extends Job { Link Here
998
			Document doc = factory.newDocumentBuilder().newDocument();
999
			Document doc = factory.newDocumentBuilder().newDocument();
999
			Element root = doc.createElement("feature"); //$NON-NLS-1$
1000
			Element root = doc.createElement("feature"); //$NON-NLS-1$
1000
			root.setAttribute("id", featureID); //$NON-NLS-1$
1001
			root.setAttribute("id", featureID); //$NON-NLS-1$
1001
			root.setAttribute("version", "1.0"); //$NON-NLS-1$ //$NON-NLS-2$
1002
			root.setAttribute("version", "1.0.0.qualifier"); //$NON-NLS-1$ //$NON-NLS-2$
1002
			doc.appendChild(root);
1003
			doc.appendChild(root);
1003
1004
1004
			if (includeLauncher) {
1005
			if (includeLauncher) {
1005
- 

Return to bug 325368