source: osm/applications/editors/josm/plugins/merge-overlap/src/mergeoverlap/MergeOverlapPlugin.java

Last change on this file was 36483, checked in by stoecker, 4 months ago

set eol-style, fix checkstyle issues, add ignores

  • Property svn:eol-style set to native
File size: 625 bytes
RevLine 
[26575]1package mergeoverlap;
2
[33848]3import org.openstreetmap.josm.gui.MainApplication;
[29778]4import org.openstreetmap.josm.gui.MainMenu;
[26575]5import org.openstreetmap.josm.plugins.Plugin;
6import org.openstreetmap.josm.plugins.PluginInformation;
7
8/**
9 * A plugin merge overlapping part of selected ways to fix warns
10 */
11public class MergeOverlapPlugin extends Plugin {
12
[30782]13 /**
14 * Constructs a new {@code MergeOverlapPlugin}.
15 * @param info plugin information
16 */
[29778]17 public MergeOverlapPlugin(PluginInformation info) {
[26575]18 super(info);
[33848]19 MainMenu.add(MainApplication.getMenu().moreToolsMenu, new MergeOverlapAction());
[26575]20 }
21}
Note: See TracBrowser for help on using the repository browser.