From d0213083f253742593e43ae17d9b8e21ad12442b Mon Sep 17 00:00:00 2001 From: Neil Fuller Date: Mon, 9 Mar 2020 10:11:36 +0000 Subject: [PATCH] Reduce log size from CountryTimeZones ICU's TimeZone.toString() prints out too much information. Only the ID is useful. Bug: 149014708 Test: build only Change-Id: I7d633f7946f82696e13dbc39749b6f9f44f83fa3 Merged-In: I7d633f7946f82696e13dbc39749b6f9f44f83fa3 (cherry picked from commit 06795ef740df358d13d783cae7a86dc2c2bef4da) --- core/java/android/timezone/CountryTimeZones.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/java/android/timezone/CountryTimeZones.java b/core/java/android/timezone/CountryTimeZones.java index ee3a8a79d5d73..a8db50e51782c 100644 --- a/core/java/android/timezone/CountryTimeZones.java +++ b/core/java/android/timezone/CountryTimeZones.java @@ -140,7 +140,7 @@ public final class CountryTimeZones { @Override public String toString() { return "OffsetResult{" - + "mTimeZone=" + mTimeZone + + "mTimeZone(ID)=" + mTimeZone.getID() + ", mIsOnlyMatch=" + mIsOnlyMatch + '}'; }