diff options
| author | 2013-10-03 16:59:05 -0700 | |
|---|---|---|
| committer | 2013-10-04 08:19:37 -0700 | |
| commit | f76b5383cd568dcfafb6819449b846ff76072c44 (patch) | |
| tree | 1bf9941b79bebaa96a5bcb47a90a600ecfabe1b6 | |
| parent | 49eb1d958198b2a88455c340c9d072469d065785 (diff) | |
DO NOT MERGE Un-deprecate getDhcpInfo
Replacement api isn't available.
bug:10003785
Change-Id: I0c91716d9aae61dc1db4d015a78b729157ea99a9
| -rw-r--r-- | api/current.txt | 4 | ||||
| -rw-r--r-- | core/java/android/net/DhcpInfo.java | 1 | ||||
| -rw-r--r-- | wifi/java/android/net/wifi/WifiManager.java | 1 |
3 files changed, 2 insertions, 4 deletions
diff --git a/api/current.txt b/api/current.txt index 02b95a0fc10b..bcab0ffdb3c3 100644 --- a/api/current.txt +++ b/api/current.txt @@ -13104,7 +13104,7 @@ package android.net { method public int getUid(); } - public deprecated class DhcpInfo implements android.os.Parcelable { + public class DhcpInfo implements android.os.Parcelable { ctor public DhcpInfo(); method public int describeContents(); method public void writeToParcel(android.os.Parcel, int); @@ -14012,7 +14012,7 @@ package android.net.wifi { method public boolean enableNetwork(int, boolean); method public java.util.List<android.net.wifi.WifiConfiguration> getConfiguredNetworks(); method public android.net.wifi.WifiInfo getConnectionInfo(); - method public deprecated android.net.DhcpInfo getDhcpInfo(); + method public android.net.DhcpInfo getDhcpInfo(); method public java.util.List<android.net.wifi.ScanResult> getScanResults(); method public int getWifiState(); method public boolean isScanAlwaysAvailable(); diff --git a/core/java/android/net/DhcpInfo.java b/core/java/android/net/DhcpInfo.java index ab4cd9b9ef76..3bede5da5090 100644 --- a/core/java/android/net/DhcpInfo.java +++ b/core/java/android/net/DhcpInfo.java @@ -22,7 +22,6 @@ import java.net.InetAddress; /** * A simple object for retrieving the results of a DHCP request. - * @deprecated - use LinkProperties - To be removed 11/2014 */ public class DhcpInfo implements Parcelable { public int ipAddress; diff --git a/wifi/java/android/net/wifi/WifiManager.java b/wifi/java/android/net/wifi/WifiManager.java index a3c172adad3a..8d7ecac3d22a 100644 --- a/wifi/java/android/net/wifi/WifiManager.java +++ b/wifi/java/android/net/wifi/WifiManager.java @@ -884,7 +884,6 @@ public class WifiManager { * Return the DHCP-assigned addresses from the last successful DHCP request, * if any. * @return the DHCP information - * @deprecated - use ConnectivityManager.getLinkProperties instead. TODO - remove 11/2013 */ public DhcpInfo getDhcpInfo() { try { |