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

Commit a9517cf5 authored by Behnam Heydarshahi's avatar Behnam Heydarshahi
Browse files

Fix typo in VolumeDialogImpl

Handle --> Handler

Bug: b/278069856
Test: atest VolumeDialogImplTest
Change-Id: I0a50262c89c1a8569b932a520c345fef813a0430
parent 4939d78c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2344,7 +2344,7 @@ public class VolumeDialogImpl implements VolumeDialog, Dumpable,
    }

    @VisibleForTesting
    void clearInternalHandleAfterTest() {
    void clearInternalHandlerAfterTest() {
        if (mHandler != null) {
            mHandler.removeCallbacksAndMessages(null);
        }
+1 −1
Original line number Diff line number Diff line
@@ -374,7 +374,7 @@ public class VolumeDialogImplTest extends SysuiTestCase {
    @After
    public void teardown() {
        if (mDialog != null) {
            mDialog.clearInternalHandleAfterTest();
            mDialog.clearInternalHandlerAfterTest();
        }
    }