Changeset 19378 in josm
- Timestamp:
- 2025-04-02T18:50:37+02:00 (4 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/Utils.java
r19328 r19378 698 698 699 699 /** 700 * Determines if a string is null or blank.701 * @param string string702 * @return {@code true} if string is null or blank703 * @since 18208704 * @deprecated use {@link #isStripEmpty(String)} or {@link String#isBlank()} instead705 */706 @Deprecated(since = "19080", forRemoval = true)707 public static boolean isBlank(String string) {708 return isStripEmpty(string);709 }710 711 /**712 700 * Returns the first not empty string in the given candidates, otherwise the default string. 713 701 * @param defaultString default string returned if all candidates would be empty if stripped
Note:
See TracChangeset
for help on using the changeset viewer.