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

Commit 2cb5152f authored by Taran Singh's avatar Taran Singh Committed by Android (Google) Code Review
Browse files

Merge "Remove ImsConfigTracker#onBindInput precondition" into tm-dev

parents 3c3c8a8b 5c53f0ca
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());
        }