Add Deprecated annotation to getPluginsPath/setPluginsPath

Javadoc annotations aren't enough to properly mark an API
as deprecated. This change adds the @Deprecated annotation
to the source and updates current.xml.

Change-Id: I04a398fc04ad99979c674789af5af994fbd25be0
This commit is contained in:
Jason Chen
2010-09-01 19:11:14 -07:00
parent f83d4f1779
commit 9dc2e75e27
2 changed files with 5 additions and 3 deletions

View File

@@ -213735,7 +213735,7 @@
synchronized="true"
static="false"
final="false"
deprecated="not deprecated"
deprecated="deprecated"
visibility="public"
>
</method>
@@ -214307,7 +214307,7 @@
synchronized="true"
static="false"
final="false"
deprecated="not deprecated"
deprecated="deprecated"
visibility="public"
>
<parameter name="pluginsPath" type="java.lang.String">
@@ -237315,7 +237315,7 @@
deprecated="not deprecated"
visibility="public"
>
<parameter name="arg0" type="T">
<parameter name="t" type="T">
</parameter>
</method>
</interface>

View File

@@ -1108,6 +1108,7 @@ public class WebSettings {
* @deprecated This method is no longer used as plugins are loaded from
* their own APK via the system's package manager.
*/
@Deprecated
public synchronized void setPluginsPath(String pluginsPath) {
}
@@ -1296,6 +1297,7 @@ public class WebSettings {
* @deprecated This method is no longer used as plugins are loaded from
* their own APK via the system's package manager.
*/
@Deprecated
public synchronized String getPluginsPath() {
return "";
}