diff options
| author | Ian Trimble | 2019-04-05 19:01:48 +0000 |
|---|---|---|
| committer | Ian Trimble | 2019-04-05 19:01:48 +0000 |
| commit | dde865ae3bf999f1fe7abaef30bbe87f1b6e7ba4 (patch) | |
| tree | 89e00c50136325ea862eaa6429744c5aa7d51f87 | |
| parent | 42dea6b63b7779a72fef2ab5109abfa014c47b85 (diff) | |
| download | webtools.jsf-dde865ae3bf999f1fe7abaef30bbe87f1b6e7ba4.tar.gz webtools.jsf-dde865ae3bf999f1fe7abaef30bbe87f1b6e7ba4.tar.xz webtools.jsf-dde865ae3bf999f1fe7abaef30bbe87f1b6e7ba4.zip | |
Remove previously-deprecated method of IProject from MockProjectR3_14
5 files changed, 15 insertions, 23 deletions
diff --git a/jsf/features/org.eclipse.jst.jsf.tests.feature/feature.xml b/jsf/features/org.eclipse.jst.jsf.tests.feature/feature.xml index 557dfe0f0..45670802f 100644 --- a/jsf/features/org.eclipse.jst.jsf.tests.feature/feature.xml +++ b/jsf/features/org.eclipse.jst.jsf.tests.feature/feature.xml @@ -1,21 +1,20 @@ <?xml version="1.0" encoding="UTF-8"?>
-<!--
- Copyright (c) 2006, 2019 IBM Corporation and others.
- This program and the accompanying materials
- are made available under the terms of the Eclipse Public License 2.0
- which accompanies this distribution, and is available at
- https://www.eclipse.org/legal/epl-2.0/
-
- SPDX-License-Identifier: EPL-2.0
-
- Contributors:
- IBM Corporation - initial API and implementation
- --> +<!-- + Copyright (c) 2006, 2019 IBM Corporation and others. + This program and the accompanying materials + are made available under the terms of the Eclipse Public License 2.0 + which accompanies this distribution, and is available at + https://www.eclipse.org/legal/epl-2.0/ + SPDX-License-Identifier: EPL-2.0 + + Contributors: + IBM Corporation - initial API and implementation + -->
<feature
id="org.eclipse.jst.jsf.tests.feature"
label="%featureName"
- version="3.5.100.qualifier"
+ version="3.5.101.qualifier"
provider-name="%providerName"
image="eclipse_update_120.jpg"
license-feature="org.eclipse.license"
diff --git a/jsf/features/org.eclipse.jst.jsf.tests.feature/pom.xml b/jsf/features/org.eclipse.jst.jsf.tests.feature/pom.xml index 3c8339b0b..b2b8af612 100644 --- a/jsf/features/org.eclipse.jst.jsf.tests.feature/pom.xml +++ b/jsf/features/org.eclipse.jst.jsf.tests.feature/pom.xml @@ -22,6 +22,6 @@ <groupId>org.eclipse.webtools.jsf</groupId> <artifactId>org.eclipse.jst.jsf.tests.feature</artifactId> - <version>3.5.100-SNAPSHOT</version> + <version>3.5.101-SNAPSHOT</version> <packaging>eclipse-feature</packaging> </project> diff --git a/jsf/tests/org.eclipse.jst.jsf.test.util/META-INF/MANIFEST.MF b/jsf/tests/org.eclipse.jst.jsf.test.util/META-INF/MANIFEST.MF index 0b9956082..ddb4f4968 100644 --- a/jsf/tests/org.eclipse.jst.jsf.test.util/META-INF/MANIFEST.MF +++ b/jsf/tests/org.eclipse.jst.jsf.test.util/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name.0 Bundle-SymbolicName: org.eclipse.jst.jsf.test.util -Bundle-Version: 1.5.111.qualifier +Bundle-Version: 1.5.112.qualifier Bundle-Activator: org.eclipse.jst.jsf.test.util.Activator Bundle-Localization: plugin Require-Bundle: org.eclipse.ui;bundle-version="[3.2.0,4.0.0)", diff --git a/jsf/tests/org.eclipse.jst.jsf.test.util/pom.xml b/jsf/tests/org.eclipse.jst.jsf.test.util/pom.xml index 8abfc8694..c5a63640c 100644 --- a/jsf/tests/org.eclipse.jst.jsf.test.util/pom.xml +++ b/jsf/tests/org.eclipse.jst.jsf.test.util/pom.xml @@ -22,6 +22,6 @@ <groupId>org.eclipse.webtools.jsf</groupId> <artifactId>org.eclipse.jst.jsf.test.util</artifactId> - <version>1.5.111-SNAPSHOT</version> + <version>1.5.112-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> </project> diff --git a/jsf/tests/org.eclipse.jst.jsf.test.util/src/org/eclipse/jst/jsf/test/util/mock/MockProject.java b/jsf/tests/org.eclipse.jst.jsf.test.util/src/org/eclipse/jst/jsf/test/util/mock/MockProject.java index 92650fdae..79f0f6d1f 100644 --- a/jsf/tests/org.eclipse.jst.jsf.test.util/src/org/eclipse/jst/jsf/test/util/mock/MockProject.java +++ b/jsf/tests/org.eclipse.jst.jsf.test.util/src/org/eclipse/jst/jsf/test/util/mock/MockProject.java @@ -26,12 +26,10 @@ import org.eclipse.core.resources.IProjectNature; import org.eclipse.core.resources.IResource; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.IPath; -import org.eclipse.core.runtime.IPluginDescriptor; import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.core.runtime.Path; import org.eclipse.core.runtime.content.IContentTypeMatcher; -@SuppressWarnings("deprecation") public class MockProject extends MockContainer implements IProject { @@ -109,11 +107,6 @@ public class MockProject extends MockContainer implements IProject throw new UnsupportedOperationException(); } - public IPath getPluginWorkingLocation(IPluginDescriptor plugin) - { - throw new UnsupportedOperationException(); - } - public IPath getWorkingLocation(String id) { throw new UnsupportedOperationException(); |
