< prev index next >

src/java.base/share/classes/sun/util/locale/provider/LocaleResources.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2012, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 40,50 **** package sun.util.locale.provider; import java.lang.ref.ReferenceQueue; import java.lang.ref.SoftReference; - import java.lang.reflect.Module; import java.text.MessageFormat; import java.util.Calendar; import java.util.LinkedHashSet; import java.util.Locale; import java.util.Map; --- 40,49 ----
*** 116,127 **** } return biInfo; } ! Module getBreakIteratorDataModule() { ! return localeData.getBreakIteratorInfo(locale).getClass().getModule(); } int getCalendarData(String key) { Integer caldata; String cacheKey = CALENDAR_DATA + key; --- 115,127 ---- } return biInfo; } ! @SuppressWarnings("unchecked") ! byte[] getBreakIteratorResources(String key) { ! return (byte[]) localeData.getBreakIteratorResources(locale).getObject(key); } int getCalendarData(String key) { Integer caldata; String cacheKey = CALENDAR_DATA + key;
< prev index next >