Changeset 4122 in osm
- Timestamp:
- 2007-08-14T14:54:51+02:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/util/Util.java
r4026 r4122 16 16 import org.openstreetmap.josm.data.osm.Way; 17 17 import org.openstreetmap.josm.plugins.*; 18 import org.openstreetmap.josm.plugins.validator.PreferenceEditor; 18 19 import org.openstreetmap.josm.tools.ImageProvider; 19 20 … … 162 163 return new File(url.toString() ) ; 163 164 164 String localPath = Main.pref.get( "tests.mirror." + url);165 String localPath = Main.pref.get( PreferenceEditor.PREFIX + ".mirror." + url); 165 166 File oldFile = null; 166 167 if( localPath != null && localPath.length() > 0) … … 225 226 } 226 227 227 Main.pref.put( "tests.mirror." + url, System.currentTimeMillis() + ";" + localPath);228 Main.pref.put( PreferenceEditor.PREFIX + ".mirror." + url, System.currentTimeMillis() + ";" + localPath); 228 229 229 230 if( oldFile != null )
Note:
See TracChangeset
for help on using the changeset viewer.