Merge "Add an override for getUser in ContextWrapper"

This commit is contained in:
Paul Hu 2020-01-02 05:42:27 +00:00 committed by Gerrit Code Review
commit 5a049f5cf2

View File

@ -943,6 +943,12 @@ public class ContextWrapper extends Context {
return mBase.getUserId();
}
/** @hide */
@Override
public UserHandle getUser() {
return mBase.getUser();
}
@Override
public Context createConfigurationContext(Configuration overrideConfiguration) {
return mBase.createConfigurationContext(overrideConfiguration);