01: /*
02: *******************************************************************************
03: * Copyright (C) 1996-2005, International Business Machines Corporation and *
04: * others. All Rights Reserved. *
05: *******************************************************************************
06: */
07:
08: package com.ibm.icu.impl.data;
09:
10: import java.util.ListResourceBundle;
11:
12: public class HolidayBundle_iw extends ListResourceBundle {
13:
14: static private final Object[][] fContents = { { "", "" }, // Can't be empty!
15: };
16:
17: public synchronized Object[][] getContents() {
18: return fContents;
19: }
20:
21: }
|