From de029e6906b41ad326d60d161cecf3fc038bf504 Mon Sep 17 00:00:00 2001 From: Almaz Mingaleev Date: Fri, 4 Dec 2020 13:25:14 +0000 Subject: Mark GeoLocationTimeZoneSuggestion.mZoneIds as nullable. Test: atest frameworks/base/services/tests/servicestests/src/com/android/server/timezonedetector/ Bug: 149014708 Change-Id: Ie4a39c16f1fd09fb3b7dfdaf5a11cd2b84b9c6b8 --- .../android/server/timezonedetector/GeolocationTimeZoneSuggestion.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/core/java/com/android/server/timezonedetector/GeolocationTimeZoneSuggestion.java b/services/core/java/com/android/server/timezonedetector/GeolocationTimeZoneSuggestion.java index 118899add968..1867ee207958 100644 --- a/services/core/java/com/android/server/timezonedetector/GeolocationTimeZoneSuggestion.java +++ b/services/core/java/com/android/server/timezonedetector/GeolocationTimeZoneSuggestion.java @@ -61,7 +61,7 @@ import java.util.StringTokenizer; */ public final class GeolocationTimeZoneSuggestion { - @NonNull private final List mZoneIds; + @Nullable private final List mZoneIds; @Nullable private ArrayList mDebugInfo; public GeolocationTimeZoneSuggestion(@Nullable List zoneIds) { -- cgit v1.2.3-59-g8ed1b