Merge "Rename enableAutoJoinWhenAssociated() to setEnableAutoJoinWhenAssociated()" into nyc-dev

This commit is contained in:
Samuel Tan
2016-04-11 19:54:20 +00:00
committed by Android (Google) Code Review
2 changed files with 3 additions and 3 deletions

View File

@@ -149,7 +149,7 @@ interface IWifiManager
void setAllowScansWithTraffic(int enabled);
int getAllowScansWithTraffic();
boolean enableAutoJoinWhenAssociated(boolean enabled);
boolean setEnableAutoJoinWhenAssociated(boolean enabled);
boolean getEnableAutoJoinWhenAssociated();
void enableWifiConnectivityManager(boolean enabled);

View File

@@ -2700,9 +2700,9 @@ public class WifiManager {
* @return true -- if set successful false -- if set failed
* @hide
*/
public boolean enableAutoJoinWhenAssociated(boolean enabled) {
public boolean setEnableAutoJoinWhenAssociated(boolean enabled) {
try {
return mService.enableAutoJoinWhenAssociated(enabled);
return mService.setEnableAutoJoinWhenAssociated(enabled);
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}