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

Commit 0ded3855 authored by Serik Beketayev's avatar Serik Beketayev
Browse files

[Mainline] Migrate TextUtils#emptyIfNull

Bug: 177477620
Test: mma
Change-Id: I0be23ae486e86864d7b3225c68ef2cfe7c7247af
parent 72df4073
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -686,7 +686,7 @@ public class NetworkDiagnostics {

            mHostname = hostname;
            mMeasurement.description = "DNS TLS dst{" + mTarget.getHostAddress() + "} hostname{"
                    + TextUtils.emptyIfNull(mHostname) + "}";
                    + (mHostname == null ? "" : mHostname) + "}";
        }

        private SSLSocket setupSSLSocket() throws IOException {