Ignore:
Timestamp:
2017-08-22T22:26:32+02:00 (9 years ago)
Author:
Don-vip
Message:

see #15182 - deprecate all Main logging methods and introduce suitable replacements in Logging for most of them

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/preferences/projection/UTMProjectionChoice.java

    r12223 r12620  
    1616import javax.swing.JRadioButton;
    1717
    18 import org.openstreetmap.josm.Main;
    1918import org.openstreetmap.josm.tools.GBC;
     19import org.openstreetmap.josm.tools.Logging;
    2020
    2121/**
     
    139139                    return Arrays.asList(zonestring, hem.toString());
    140140            } catch (NumberFormatException e) {
    141                 Main.warn(e);
     141                Logging.warn(e);
    142142            }
    143143        }
     
    170170            return Integer.parseInt(zone) - 1;
    171171        } catch (NumberFormatException e) {
    172             Main.warn(e);
     172            Logging.warn(e);
    173173        }
    174174        return defaultIndex;
Note: See TracChangeset for help on using the changeset viewer.