Ignore:
Timestamp:
2017-08-22T22:26:32+02:00 (7 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/dialogs/LatLonDialog.java

    r12301 r12620  
    3131import org.openstreetmap.josm.gui.widgets.JosmTextField;
    3232import org.openstreetmap.josm.tools.GBC;
     33import org.openstreetmap.josm.tools.Logging;
    3334import org.openstreetmap.josm.tools.Utils;
    3435import org.openstreetmap.josm.tools.WindowGeometry;
     
    249250            }
    250251        } catch (IllegalArgumentException e) {
    251             Main.trace(e);
     252            Logging.trace(e);
    252253            latLon = null;
    253254        }
     
    268269            en = parseEastNorth(tfEastNorth.getText());
    269270        } catch (IllegalArgumentException e) {
    270             Main.trace(e);
     271            Logging.trace(e);
    271272            en = null;
    272273        }
Note: See TracChangeset for help on using the changeset viewer.