Changeset 19080 in josm for trunk/test/unit


Ignore:
Timestamp:
2024-05-14T21:30:11+02:00 (4 months ago)
Author:
taylor.smock
Message:

See #23671: Deprecate Utils#isBlank and replace instances of it with Utils#isStripEmpty

As noted in r19079, the two functions were identical in behavior.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/testutils/annotations/ProjectionNadGrids.java

    r18972 r19080  
    3434        @Override
    3535        public void beforeEach(ExtensionContext extensionContext) throws Exception {
    36             if (Utils.isBlank(Utils.getSystemProperty("PROJ_LIB"))) {
     36            if (Utils.isStripEmpty(Utils.getSystemProperty("PROJ_LIB"))) {
    3737                Utils.updateSystemProperty("PROJ_LIB", Paths.get("nodist", "data", "projection").toString());
    3838            }
Note: See TracChangeset for help on using the changeset viewer.