Ignore:
Timestamp:
2014-04-25T10:36:29+02:00 (10 years ago)
Author:
akks
Message:

fix #9937: Was not importing data from Overpass by remote control (regression of 6972)

File:
1 edited

Legend:

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

    r6995 r6999  
    7575    private static final int MILLIS_OF_DAY = 86400000;
    7676
    77     public static final String URL_CHARS = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-._~:/?#[]@!$&'()*+,;=";
    78    
     77    // Should us keep "%" character when fixing URL or encode it? Let us keep them for now, see #9937
     78    public static final String URL_CHARS = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-._~:/?#[]@!$&'()*+,;=%";
     79
    7980    /**
    8081     * Tests whether {@code predicate} applies to at least one elements from {@code collection}.
Note: See TracChangeset for help on using the changeset viewer.