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

Commit 92375db2 authored by Steve Statia's avatar Steve Statia
Browse files

Add ServiceState#isUsingNonTerrestrialNetwork value to its toString().

Since being introduced in Android V the toString has not been modified
to reflect the new value apart of the ServiceState. This will aid in
debugging ServiceState going forward.

Test: manual
Bug: 356181166
Change-Id: Ie3f5470d9972a1f5f0e583fb14d0911a1f25d53b
parent e02cd99c
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1211,6 +1211,8 @@ public class ServiceState implements Parcelable {
                    .append(", mIsDataRoamingFromRegistration=")
                    .append(mIsDataRoamingFromRegistration)
                    .append(", mIsIwlanPreferred=").append(mIsIwlanPreferred)
                    .append(", mIsUsingNonTerrestrialNetwork=")
                    .append(isUsingNonTerrestrialNetwork())
                    .append("}").toString();
        }
    }