Merge "[Mainline] Migrate TextUtils#emptyIfNull" am: 23438d66dd am: 562a34498f am: 8da61cc1f4 am: ddf729f9ca am: 1d769ff312
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1550514 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I4317a97fbd9e79fe69bfc6f1254768575fc50c62
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user