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

Commit 69c60c05 authored by Neil Fuller's avatar Neil Fuller
Browse files

Fix name in string constants

The name "NewNitzStateMachineImpl" is left behind after a previous
refactoring. This is just a tidy up.

Bug: 192216373
Test: treehugger only
Change-Id: Ie3d0ef7ea15205ccad423fa94102d05d16756878
parent 963001a3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -92,7 +92,7 @@ public final class NitzStateMachineImpl implements NitzStateMachine {
                @Nullable TimestampedValue<NitzData> nitzSignal);
    }

    static final String LOG_TAG = "NewNitzStateMachineImpl";
    static final String LOG_TAG = "NitzStateMachineImpl";
    static final boolean DBG = true;

    // Miscellaneous dependencies and helpers not related to detection state.
+1 −1
Original line number Diff line number Diff line
@@ -93,7 +93,7 @@ public class NitzStateMachineImplTest extends TelephonyTest {
                SLOT_INDEX, mFakeNitzSignalInputFilter, mRealTimeZoneSuggester,
                mFakeTimeServiceHelper);

        TelephonyTest.logd("NewNitzStateMachineImplTest -Setup!");
        TelephonyTest.logd("NitzStateMachineImplTest -Setup!");
    }

    @After