summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
authorWink Saville <wink@google.com>2010-12-02 09:51:05 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-12-02 09:51:05 -0800
commitd66c63e56e6b89d117bc4ff6dff9d70dec92e427 (patch)
tree12d878d1fb96b673cf480a732618dbe37e334d3f /services
parent97c40a9deeb18393792fe5096143d6760422dbe6 (diff)
parentcfce303cbdd59a3883957e4bc96a0476ceeb86ac (diff)
downloadframeworks_base-d66c63e56e6b89d117bc4ff6dff9d70dec92e427.zip
frameworks_base-d66c63e56e6b89d117bc4ff6dff9d70dec92e427.tar.gz
frameworks_base-d66c63e56e6b89d117bc4ff6dff9d70dec92e427.tar.bz2
Merge "Remove the need for a token parameter from AsyncChannel."
Diffstat (limited to 'services')
-rw-r--r--services/java/com/android/server/WifiService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/java/com/android/server/WifiService.java b/services/java/com/android/server/WifiService.java
index d523fa8..7f81a25 100644
--- a/services/java/com/android/server/WifiService.java
+++ b/services/java/com/android/server/WifiService.java
@@ -197,7 +197,7 @@ public class WifiService extends IWifiManager.Stub {
WifiServiceHandler(android.os.Looper looper, Context context) {
super(looper);
mWshChannel = new AsyncChannel();
- mWshChannel.connect(context, this, mWifiStateMachine.getHandler(), 0);
+ mWshChannel.connect(context, this, mWifiStateMachine.getHandler());
}
@Override