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

Commit 72b941b6 authored by Neil Fuller's avatar Neil Fuller
Browse files

Fix bad toString() output

Add missing spaces to toString() for BinderLocationTimeZoneProvider and
NullLocationTimeZoneProvider.

Bug: 152744911
Bug: 149014708
Test: build / boot / treehugger
Change-Id: Iefefed084c22de0660223d1a40bb22331d15c374
parent ebb79d3b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -200,8 +200,8 @@ class BinderLocationTimeZoneProvider extends LocationTimeZoneProvider {
        synchronized (mSharedLock) {
            return "BinderLocationTimeZoneProvider{"
                    + "mProviderName=" + mProviderName
                    + "mCurrentState=" + mCurrentState
                    + "mProxy=" + mProxy
                    + ", mCurrentState=" + mCurrentState
                    + ", mProxy=" + mProxy
                    + '}';
        }
    }
+1 −1
Original line number Diff line number Diff line
@@ -92,7 +92,7 @@ class NullLocationTimeZoneProvider extends LocationTimeZoneProvider {
        synchronized (mSharedLock) {
            return "NullLocationTimeZoneProvider{"
                    + "mProviderName='" + mProviderName + '\''
                    + "mCurrentState='" + mCurrentState + '\''
                    + ", mCurrentState='" + mCurrentState + '\''
                    + '}';
        }
    }