Changeset 6123 in josm


Ignore:
Timestamp:
2013-08-09T11:19:41+02:00 (12 years ago)
Author:
Don-vip
Message:

fix #8904 - Disable Java HTTP caching, enabled by default with Java Web Start in 7u2 and later

File:
1 edited

Legend:

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

    r6110 r6123  
    574574        HttpURLConnection connection = (HttpURLConnection) httpURL.openConnection();
    575575        connection.setRequestProperty("User-Agent", Version.getInstance().getFullAgentString());
     576        connection.setUseCaches(false);
    576577        return connection;
    577578    }
Note: See TracChangeset for help on using the changeset viewer.