Ignore:
Timestamp:
2014-01-06T16:39:45+01:00 (10 years ago)
Author:
Don-vip
Message:

global replacement of e.printStackTrace() by Main.error(e)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/OsmUrlToBounds.java

    r6514 r6643  
    7373            }
    7474        } catch (NumberFormatException x) {
    75             x.printStackTrace();
     75            Main.error(x);
    7676        } catch (NullPointerException x) {
    77             x.printStackTrace();
     77            Main.error(x);
    7878        } catch (ArrayIndexOutOfBoundsException x) {
    79             x.printStackTrace();
     79            Main.error(x);
    8080        }
    8181        return b;
Note: See TracChangeset for help on using the changeset viewer.