Ignore:
Timestamp:
2011-04-15T21:25:08+02:00 (14 years ago)
Author:
stoecker
Message:

fix #6213 - license info wrong

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/User.java

    r4025 r4026  
    110110    }
    111111
    112     public static void loadRelicensingInformation() {
     112    public static void initRelicensingInformation() {
     113        if(relicensingUsers == null) {
     114            loadRelicensingInformation(false);
     115        }
     116    }
     117
     118    public static void loadRelicensingInformation(boolean clean) {
    113119        relicensingUsers = new HashSet<Long>();
    114120        try {
    115121            MirroredInputStream stream = new MirroredInputStream(Main.pref.get("url.licensechange",
    116             "http://planet.openstreetmap.org/users_agreed/users_agreed.txt"), 7200);
     122            "http://planet.openstreetmap.org/users_agreed/users_agreed.txt"), clean ? 1 : 7200);
    117123            try {
    118124                InputStreamReader r;
Note: See TracChangeset for help on using the changeset viewer.