Merge "Do not register the callbacks in the constructor."

This commit is contained in:
Chia-chi Yeh
2011-06-07 18:18:56 -07:00
committed by Android (Google) Code Review

View File

@@ -458,6 +458,12 @@ public class ConnectivityService extends IConnectivityManager.Stub {
mTethering.getTetherableBluetoothRegexs().length != 0) && mTethering.getTetherableBluetoothRegexs().length != 0) &&
mTethering.getUpstreamIfaceRegexs().length != 0); mTethering.getUpstreamIfaceRegexs().length != 0);
try {
nmService.registerObserver(mTethering);
} catch (RemoteException e) {
loge("Error registering observer :" + e);
}
if (DBG) { if (DBG) {
mInetLog = new ArrayList(); mInetLog = new ArrayList();
} }