Merge "Fix NPE in tethering startup"

This commit is contained in:
Mark Chien
2020-02-03 02:52:43 +00:00
committed by Gerrit Code Review

View File

@@ -77,8 +77,8 @@ public class TetheringService extends Service {
mLog.mark("onCreate");
mDeps = getTetheringDependencies();
mContext = mDeps.getContext();
mTethering = makeTethering(mDeps);
mUserManager = (UserManager) mContext.getSystemService(Context.USER_SERVICE);
mTethering = makeTethering(mDeps);
}
/**