Skip to content

Commit

Permalink
checkstyle-10.19.0 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ao-apps committed Oct 30, 2024
1 parent ad072af commit 09d26b8
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions src/main/java/com/aoapps/tlds/TopLevelDomain.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* ao-tlds - Self-updating Java API to get top-level domains.
* Copyright (C) 2016, 2017, 2018, 2019, 2020, 2021, 2022 AO Industries, Inc.
* Copyright (C) 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2024 AO Industries, Inc.
* [email protected]
* 7262 Bull Pen Cir
* Mobile, AL 36695
Expand Down Expand Up @@ -366,9 +366,8 @@ private void saveToPreferences() throws BackingStoreException {
* Gets an unmodifiable list of the most recently retrieved top-level domains,
* in the case and order contained within
* <a href="https://data.iana.org/TLD/tlds-alpha-by-domain.txt">tlds-alpha-by-domain.txt</a>.
* <p>
* Each element is {@link String#intern() interned}.
* </p>
*
* <p>Each element is {@link String#intern() interned}.</p>
*
* @see TopLevelDomain#getTopLevelDomains()
*/
Expand Down Expand Up @@ -430,9 +429,8 @@ public long getLastSuccessfulUpdateTime() {

/**
* Provides a way to get the top level domain based on label (case-insensitive).
* <p>
* Any non-null returned value is {@link String#intern() interned}.
* </p>
*
* <p>Any non-null returned value is {@link String#intern() interned}.</p>
*
* @return The top level domain based on label (case-insensitive) or {@code null} if no match.
*
Expand Down Expand Up @@ -614,9 +612,8 @@ public static Snapshot getSnapshot() {
* Gets an unmodifiable list of the most recently retrieved top-level domains,
* in the case and order contained within
* <a href="https://data.iana.org/TLD/tlds-alpha-by-domain.txt">tlds-alpha-by-domain.txt</a>.
* <p>
* Each element is {@link String#intern() interned}.
* </p>
*
* <p>Each element is {@link String#intern() interned}.</p>
*
* @see Snapshot#getTopLevelDomains()
* @see #getSnapshot()
Expand Down Expand Up @@ -682,9 +679,8 @@ public static long getLastSuccessfulUpdateTime() {

/**
* Provides a way to get the top level domain based on label (case-insensitive).
* <p>
* Any non-null returned value is {@link String#intern() interned}.
* </p>
*
* <p>Any non-null returned value is {@link String#intern() interned}.</p>
*
* @return The top level domain based on label (case-insensitive) or {@code null} if no match.
*
Expand Down

0 comments on commit 09d26b8

Please sign in to comment.