Changeset 4026 in josm for trunk/src/org/openstreetmap/josm/data
- Timestamp:
- 2011-04-15T21:25:08+02:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/User.java
r4025 r4026 110 110 } 111 111 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) { 113 119 relicensingUsers = new HashSet<Long>(); 114 120 try { 115 121 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); 117 123 try { 118 124 InputStreamReader r;
Note:
See TracChangeset
for help on using the changeset viewer.