Changeset 15232 in josm for trunk/scripts
- Timestamp:
- 2019-07-07T23:38:39+02:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/scripts/TagInfoExtract.java
r14746 r15232 72 72 import org.openstreetmap.josm.io.OsmTransferException; 73 73 import org.openstreetmap.josm.spi.preferences.Config; 74 import org.openstreetmap.josm.tools.Http1Client; 75 import org.openstreetmap.josm.tools.HttpClient; 74 76 import org.openstreetmap.josm.tools.Logging; 75 77 import org.openstreetmap.josm.tools.OptionParser; … … 92 94 /** 93 95 * Main method. 96 * @param args Main program arguments 97 * @throws Exception if any error occurs 94 98 */ 95 99 public static void main(String[] args) throws Exception { 100 HttpClient.setFactory(Http1Client::new); 96 101 TagInfoExtract script = new TagInfoExtract(); 97 102 script.parseCommandLineArguments(args);
Note:
See TracChangeset
for help on using the changeset viewer.