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 | |
---|
1 | package mergeoverlap;
|
---|
2 |
|
---|
3 | import org.openstreetmap.josm.Main;
|
---|
4 | import org.openstreetmap.josm.gui.MainMenu;
|
---|
5 | import org.openstreetmap.josm.plugins.Plugin;
|
---|
6 | import org.openstreetmap.josm.plugins.PluginInformation;
|
---|
7 |
|
---|
8 | /**
|
---|
9 | * A plugin merge overlapping part of selected ways to fix warns
|
---|
10 | */
|
---|
11 | public 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.