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

Last change on this file since 31986 was 30782, checked in by donvip, 11 years ago

[josm-merge_overlap] fix sonar issues

File size: 599 bytes
Line 
1package mergeoverlap;
2
3import org.openstreetmap.josm.Main;
4import org.openstreetmap.josm.gui.MainMenu;
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
13 /**
14 * Constructs a new {@code MergeOverlapPlugin}.
15 * @param info plugin information
16 */
17 public MergeOverlapPlugin(PluginInformation info) {
18 super(info);
19 MainMenu.add(Main.main.menu.moreToolsMenu, new MergeOverlapAction());
20 }
21}
Note: See TracBrowser for help on using the repository browser.