Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2018-06-11 14:50:35 +0000
committerLars Vogel2018-06-11 14:50:52 +0000
commite32b03af25d1636911cb95e22ee6a2bc456c01a8 (patch)
treeb22453075d939a408d1fcc0ffde00804384602ed
parentb423c76d7f2334741c1955e8c68d2cc0d0d17165 (diff)
downloadeclipse.platform.runtime-e32b03af25d1636911cb95e22ee6a2bc456c01a8.tar.gz
eclipse.platform.runtime-e32b03af25d1636911cb95e22ee6a2bc456c01a8.tar.xz
eclipse.platform.runtime-e32b03af25d1636911cb95e22ee6a2bc456c01a8.zip
Use drop-in method call in Javadoc for Platform.findI20180613-0440I20180613-0300
Change-Id: Ie88aa48a42d505e917085f33ed378b61b9ce16ff Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--bundles/org.eclipse.core.runtime/src/org/eclipse/core/runtime/Platform.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/bundles/org.eclipse.core.runtime/src/org/eclipse/core/runtime/Platform.java b/bundles/org.eclipse.core.runtime/src/org/eclipse/core/runtime/Platform.java
index 0435d87b0..51f8268c5 100644
--- a/bundles/org.eclipse.core.runtime/src/org/eclipse/core/runtime/Platform.java
+++ b/bundles/org.eclipse.core.runtime/src/org/eclipse/core/runtime/Platform.java
@@ -892,22 +892,22 @@ public final class Platform {
}
/**
- * Returns a URL for the given path in the given bundle. Returns <code>null</code> if the URL
- * could not be computed or created.
+ * Returns a URL for the given path in the given bundle. Returns
+ * <code>null</code> if the URL could not be computed or created.
*
* @param bundle the bundle in which to search
- * @param path path relative to plug-in installation location
- * @return a URL for the given path or <code>null</code>. The actual form
- * of the returned URL is not specified.
+ * @param path path relative to plug-in installation location
+ * @return a URL for the given path or <code>null</code>. The actual form of the
+ * returned URL is not specified.
* @see #find(Bundle, IPath, Map)
* @see #resolve(URL)
* @see #asLocalURL(URL)
* @since 3.0
- * @deprecated use {@link FileLocator#find(Bundle, IPath, Map)}
+ * @deprecated use {@link FileLocator#find(Bundle, IPath)}
*/
@Deprecated
public static URL find(Bundle bundle, IPath path) {
- return FileLocator.find(bundle, path, null);
+ return FileLocator.find(bundle, path);
}
/**

Back to the top