Ignore:
Timestamp:
2021-09-11T17:50:57+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/gui/io/CustomConfigurator.java

    r17333 r18208  
    149149     */
    150150    public static void messageBox(String type, String text) {
    151         char c = (type == null || type.isEmpty() ? "plain" : type).charAt(0);
     151        char c = (Utils.isEmpty(type) ? "plain" : type).charAt(0);
    152152        MainFrame parent = MainApplication.getMainFrame();
    153153        switch (c) {
Note: See TracChangeset for help on using the changeset viewer.