Changeset 35659 in osm for applications/editors/josm/plugins/jna/src
- Timestamp:
- 2020-12-05T17:34:39+01:00 (4 years ago)
- Location:
- applications/editors/josm/plugins/jna/src/org/openstreetmap/josm/plugins/jna
- Files:
-
- 7 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/jna/src/org/openstreetmap/josm/plugins/jna/JNAPlugin.java
r32530 r35659 4 4 import org.openstreetmap.josm.plugins.Plugin; 5 5 import org.openstreetmap.josm.plugins.PluginInformation; 6 import org.openstreetmap.josm.plugins.jna.mac.JosmMacNativeLogHandler; 7 import org.openstreetmap.josm.tools.Logging; 8 import org.openstreetmap.josm.tools.PlatformManager; 6 9 7 10 /** … … 15 18 public JNAPlugin(PluginInformation info) { 16 19 super(info); 20 if (PlatformManager.isPlatformOsx()) { 21 Logging.getLogger().addHandler(new JosmMacNativeLogHandler()); 22 } 17 23 } 18 24 }
Note:
See TracChangeset
for help on using the changeset viewer.