Ignore:
Timestamp:
2021-09-12T02:10:25+02:00 (3 years ago)
Author:
Don-vip
Message:

global use of !Utils.isEmpty/isBlank

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/Version.java

    r16436 r18211  
    178178        int v = getVersion();
    179179        String s = (v == JOSM_UNKNOWN_VERSION) ? "UNKNOWN" : Integer.toString(v);
    180         if (buildName != null && !buildName.isEmpty()) {
     180        if (!Utils.isEmpty(buildName)) {
    181181            s += ' ' + buildName;
    182182        }
Note: See TracChangeset for help on using the changeset viewer.