We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c58392b commit 10d940dCopy full SHA for 10d940d
services/java/com/android/server/WifiService.java
@@ -955,12 +955,10 @@ public void clearBlacklist() {
955
* an AsyncChannel communication with WifiService
956
*/
957
public Messenger getWifiServiceMessenger() {
958
- /* Enforce the highest permissions
959
- TODO: when we consider exposing the asynchronous API, think about
960
- how to provide both access and change permissions seperately
961
- */
962
- enforceAccessPermission();
963
- enforceChangePermission();
+ /* STOPSHIP: Fix this to have old sync API not need these new permissions
+ * enforceAccessPermission();
+ * enforceChangePermission();
+ */
964
return new Messenger(mAsyncServiceHandler);
965
}
966
0 commit comments