From f3d5ec05b438905ea9bb1a6a5b6fee989000efc8 Mon Sep 17 00:00:00 2001 From: Chet Haase Date: Tue, 24 May 2016 16:07:00 -0700 Subject: [PATCH] Remove hidden LocaleList default constructor Previous change hid this constructor. Now removing it entirely for completeness. Issue #28296200 API Review: LocaleList Change-Id: I43476994070b101999d338ec1f5d1a1a0a2a7658 --- core/java/android/os/LocaleList.java | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/core/java/android/os/LocaleList.java b/core/java/android/os/LocaleList.java index 60b618a2f689b..2dc3bebb2d10a 100644 --- a/core/java/android/os/LocaleList.java +++ b/core/java/android/os/LocaleList.java @@ -147,17 +147,6 @@ public final class LocaleList implements Parcelable { return mStringRepresentation; } - /** - * It is almost always better to call {@link #getEmptyLocaleList()} instead which returns - * a pre-constructed empty locale list. - * - * @hide - */ - public LocaleList() { - mList = sEmptyList; - mStringRepresentation = ""; - } - /** * Creates a new {@link LocaleList}. *