1/* GENERATED SOURCE. DO NOT MODIFY. */
2// © 2016 and later: Unicode, Inc. and others.
3// License & terms of use: http://www.unicode.org/copyright.html#License
4/*
5 *******************************************************************************
6 * Copyright (C) 1996-2005, International Business Machines Corporation and    *
7 * others. All Rights Reserved.                                                *
8 *******************************************************************************
9 */
10
11package android.icu.impl.data;
12
13import java.util.ListResourceBundle;
14
15/**
16 * @hide Only a subset of ICU is exposed in Android
17 */
18public class HolidayBundle_en extends ListResourceBundle {
19
20    // Normally, each HolidayBundle uses the holiday's US English name
21    // as the string key for looking up the localized name.  This means
22    // that the key itself can be used if no name is found for the requested
23    // locale.
24    //
25    // For holidays where the key is _not_ the English name, e.g. in the
26    // case of conflicts, the English name must be given here.
27    //
28    static private final Object[][] fContents = {
29        {   "", ""  },      // Can't be empty!
30    };
31
32    @Override
33    public synchronized Object[][] getContents() { return fContents; }
34
35}
36