Skip to content

Commit 9309786

Browse files
author
Andrey Turbanov
committedSep 28, 2022
8294472: Remove redundant rawtypes suppression in AbstractChronology
Reviewed-by: lancea, naoto
1 parent 3b7fc80 commit 9309786

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed
 

‎src/java.base/share/classes/java/time/chrono/AbstractChronology.java

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2012, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -93,7 +93,6 @@
9393
import java.time.temporal.TemporalAdjusters;
9494
import java.time.temporal.TemporalField;
9595
import java.time.temporal.ValueRange;
96-
import java.util.Comparator;
9796
import java.util.HashSet;
9897
import java.util.List;
9998
import java.util.Locale;
@@ -193,8 +192,7 @@ private static boolean initCache() {
193192
registerChrono(ThaiBuddhistChronology.INSTANCE);
194193

195194
// Register Chronologies from the ServiceLoader
196-
@SuppressWarnings("rawtypes")
197-
ServiceLoader<AbstractChronology> loader = ServiceLoader.load(AbstractChronology.class, null);
195+
ServiceLoader<AbstractChronology> loader = ServiceLoader.load(AbstractChronology.class, null);
198196
for (AbstractChronology chrono : loader) {
199197
String id = chrono.getId();
200198
if (id.equals("ISO") || registerChrono(chrono) != null) {
@@ -238,7 +236,6 @@ static Chronology ofLocale(Locale locale) {
238236

239237
// Look for a Chronology using ServiceLoader of the Thread's ContextClassLoader
240238
// Application provided Chronologies must not be cached
241-
@SuppressWarnings("rawtypes")
242239
ServiceLoader<Chronology> loader = ServiceLoader.load(Chronology.class);
243240
for (Chronology chrono : loader) {
244241
if (type.equals(chrono.getCalendarType())) {
@@ -271,7 +268,6 @@ static Chronology of(String id) {
271268

272269
// Look for a Chronology using ServiceLoader of the Thread's ContextClassLoader
273270
// Application provided Chronologies must not be cached
274-
@SuppressWarnings("rawtypes")
275271
ServiceLoader<Chronology> loader = ServiceLoader.load(Chronology.class);
276272
for (Chronology chrono : loader) {
277273
if (id.equals(chrono.getId()) || id.equals(chrono.getCalendarType())) {
@@ -311,7 +307,6 @@ static Set<Chronology> getAvailableChronologies() {
311307
HashSet<Chronology> chronos = new HashSet<>(CHRONOS_BY_ID.values());
312308

313309
/// Add in Chronologies from the ServiceLoader configuration
314-
@SuppressWarnings("rawtypes")
315310
ServiceLoader<Chronology> loader = ServiceLoader.load(Chronology.class);
316311
for (Chronology chrono : loader) {
317312
chronos.add(chrono);

0 commit comments

Comments
 (0)
Please sign in to comment.