Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d406b3f9 authored by Taran Singh's avatar Taran Singh Committed by Automerger Merge Worker
Browse files

Merge "Remove ImsConfigTracker#onBindInput precondition" into tm-dev am: 2cb5152f

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/17125583

Change-Id: I637b7be125d6d689a7235389bf3de435db670385
parents 3e022dc7 2cb5152f
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -63,8 +63,9 @@ public final class ImsConfigurationTracker {
     */
    @MainThread
    public void onBindInput(@Nullable Resources resources) {
        Preconditions.checkState(mInitialized,
                "onBindInput can be called only after onInitialize().");
        if (!mInitialized) {
            return;
        }
        if (mLastKnownConfig == null && resources != null) {
            mLastKnownConfig = new Configuration(resources.getConfiguration());
        }