Changeset 19378 in josm


Ignore:
Timestamp:
2025-04-02T18:50:37+02:00 (4 days ago)
Author:
stoecker
Message:

see #24104 - drop deprecated isBlank()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/Utils.java

    r19328 r19378  
    698698
    699699    /**
    700      * Determines if a string is null or blank.
    701      * @param string string
    702      * @return {@code true} if string is null or blank
    703      * @since 18208
    704      * @deprecated use {@link #isStripEmpty(String)} or {@link String#isBlank()} instead
    705      */
    706     @Deprecated(since = "19080", forRemoval = true)
    707     public static boolean isBlank(String string) {
    708         return isStripEmpty(string);
    709     }
    710 
    711     /**
    712700     * Returns the first not empty string in the given candidates, otherwise the default string.
    713701     * @param defaultString default string returned if all candidates would be empty if stripped
Note: See TracChangeset for help on using the changeset viewer.