Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2018-02-26 17:34:30 +0000
committerThomas Watson2018-02-26 17:34:30 +0000
commitdfd6be53a4de60253f8c1c80aa312797bb0a9457 (patch)
tree08e3705e3b9312a83c812b90a68474ce7ddd0858
parent1417dc8b29db261234661c82931ae5b4f14428ab (diff)
downloadrt.equinox.bundles-dfd6be53a4de60253f8c1c80aa312797bb0a9457.tar.gz
rt.equinox.bundles-dfd6be53a4de60253f8c1c80aa312797bb0a9457.tar.xz
rt.equinox.bundles-dfd6be53a4de60253f8c1c80aa312797bb0a9457.zip
Bug 483464 - Need to update bundle version for new APII20180227-2000I20180226-2000
Change-Id: Ib1bc3c8c474b3c89708a86fdf98a782c116b85fb Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
-rw-r--r--bundles/org.eclipse.equinox.common/META-INF/MANIFEST.MF2
-rw-r--r--bundles/org.eclipse.equinox.common/pom.xml2
-rw-r--r--bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/FileLocator.java2
3 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.equinox.common/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.common/META-INF/MANIFEST.MF
index 1540f6209..ec2068b0f 100644
--- a/bundles/org.eclipse.equinox.common/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.equinox.common/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.equinox.common; singleton:=true
-Bundle-Version: 3.9.100.qualifier
+Bundle-Version: 3.10.0.qualifier
Bundle-Localization: plugin
Export-Package: org.eclipse.core.internal.boot;x-friends:="org.eclipse.core.resources,org.eclipse.core.runtime.compatibility,org.eclipse.pde.build",
org.eclipse.core.internal.runtime;common=split;mandatory:=common;
diff --git a/bundles/org.eclipse.equinox.common/pom.xml b/bundles/org.eclipse.equinox.common/pom.xml
index 349430b1d..a3472878a 100644
--- a/bundles/org.eclipse.equinox.common/pom.xml
+++ b/bundles/org.eclipse.equinox.common/pom.xml
@@ -19,6 +19,6 @@
</parent>
<groupId>org.eclipse.equinox</groupId>
<artifactId>org.eclipse.equinox.common</artifactId>
- <version>3.9.100-SNAPSHOT</version>
+ <version>3.10.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
diff --git a/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/FileLocator.java b/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/FileLocator.java
index d7a70a2ff..8057c7aee 100644
--- a/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/FileLocator.java
+++ b/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/FileLocator.java
@@ -127,7 +127,7 @@ public final class FileLocator {
* @return a URL for the given path or <code>null</code>. The actual form
* of the returned URL is not specified.
*
- * @since 3.9
+ * @since 3.10
*/
public static URL find(Bundle bundle, IPath path) {
return FindSupport.find(bundle, path, null);

Back to the top