Changeset 33867 in osm


Ignore:
Timestamp:
2017-11-22T00:22:26+01:00 (7 years ago)
Author:
donvip
Message:

update to JOSM 10899

Location:
applications/editors/josm/plugins/tag2link
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/tag2link/build.xml

    r32680 r33867  
    55    <property name="commit.message" value="Commit message"/>
    66    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    7     <property name="plugin.main.version" value="10580"/>
     7    <property name="plugin.main.version" value="10899"/>
    88
    99    <property name="plugin.author" value="Don-vip &amp; FrViPofm"/>
  • applications/editors/josm/plugins/tag2link/src/org/openstreetmap/josm/plugins/tag2link/action/OpenLinkAction.java

    r33150 r33867  
    3232import org.openstreetmap.josm.plugins.tag2link.data.LinkPost;
    3333import org.openstreetmap.josm.tools.HttpClient;
     34import org.openstreetmap.josm.tools.Logging;
    3435import org.openstreetmap.josm.tools.OpenBrowser;
    3536
     
    7172                }
    7273               
    73                 Main.info("Opening "+filename);
     74                Logging.info("Opening "+filename);
    7475                String result = OpenBrowser.displayUrl("file://"+filename);
    7576                if (result != null) {
    76                     Main.error(result);
     77                    Logging.error(result);
    7778                }
    7879            } catch (IOException ex) {
    79                 Main.error(ex);
     80                Logging.error(ex);
    8081            }
    8182        } else {
    82             Main.info("Opening "+link.url);
     83            Logging.info("Opening "+link.url);
    8384            String result = OpenBrowser.displayUrl(link.url);
    8485            if (result != null) {
    85                 Main.error(result);
     86                Logging.error(result);
    8687            }
    8788        }
Note: See TracChangeset for help on using the changeset viewer.