diff options
author | Jason Chen <jasonchen@google.com> | 2010-09-01 19:02:26 -0700 |
---|---|---|
committer | Jason Chen <jasonchen@google.com> | 2010-09-01 19:04:18 -0700 |
commit | b766ab830a714c0b79f64265e681f454865ffe65 (patch) | |
tree | 69f6856ae8156e0b5b403f08b7ac1afff07a07fe /core/java | |
parent | 3424c02e6b931a8bbd651ae75217bebd008b2605 (diff) | |
download | frameworks_base-b766ab830a714c0b79f64265e681f454865ffe65.zip frameworks_base-b766ab830a714c0b79f64265e681f454865ffe65.tar.gz frameworks_base-b766ab830a714c0b79f64265e681f454865ffe65.tar.bz2 |
DO NOT MERGE Add deprecated annotation to get/set PluginsPath and update current.xml
Previous changes only added javadoc annotation, but didn't apply
annotation to the source. Fixing this and updating current.xml.
Change-Id: I52aabd6485a3972fc360f24c2e86cc342a5101ab
Diffstat (limited to 'core/java')
-rw-r--r-- | core/java/android/webkit/WebSettings.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/java/android/webkit/WebSettings.java b/core/java/android/webkit/WebSettings.java index 4e57a8a..da0c61b 100644 --- a/core/java/android/webkit/WebSettings.java +++ b/core/java/android/webkit/WebSettings.java @@ -1054,6 +1054,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) { } @@ -1229,6 +1230,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 ""; } |