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

Commit 23438d66 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "[Mainline] Migrate TextUtils#emptyIfNull"

parents 6c0e8ad6 0ded3855
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 {