Ignore:
Timestamp:
2019-01-12T11:52:51+01:00 (6 years ago)
Author:
gerdp
Message:

fix checkstyle issues

Location:
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/actions/SplitObjectAction.java

    r34812 r34816  
    5858    @Override
    5959    public void actionPerformed(ActionEvent e) {
    60         DataSet ds = getLayerManager().getEditDataSet();
     60        DataSet ds = getLayerManager().getEditDataSet();
    6161        if (!checkSelection(ds.getSelected())) {
    6262            showWarningNotification(tr("The current selection cannot be used for splitting."));
  • applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/actions/SplitOnIntersectionsAction.java

    r34812 r34816  
    3737    private static final String TOOL_DESC = tr("Split adjacent ways on T-intersections");
    3838    public SplitOnIntersectionsAction() {
    39                 super(TITLE, "dumbutils/splitonintersections", TOOL_DESC,
    40                                 Shortcut.registerShortcut("tools:splitonintersections", tr("Tool: {0}", tr("Split adjacent ways")),
    41                                                 KeyEvent.VK_P, Shortcut.ALT_CTRL_SHIFT),
    42                                 true);
     39        super(TITLE, "dumbutils/splitonintersections", TOOL_DESC,
     40            Shortcut.registerShortcut("tools:splitonintersections", tr("Tool: {0}", tr("Split adjacent ways")),
     41            KeyEvent.VK_P, Shortcut.ALT_CTRL_SHIFT),
     42            true);
    4343    }
    4444
     
    9595            SplitWayCommand split = SplitWayCommand.split(entry.getKey(), entry.getValue(), selectedWays);
    9696            if (split != null) {
    97                 // execute, we need the result, see also #16006
    98                 UndoRedoHandler.getInstance().add(split);
    99                 selectedWays.remove(split.getOriginalWay());
    100                 selectedWays.addAll(split.getNewWays());
     97                // execute, we need the result, see also #16006
     98                UndoRedoHandler.getInstance().add(split);
     99                selectedWays.remove(split.getOriginalWay());
     100                selectedWays.addAll(split.getNewWays());
    101101                list.add(split);
    102102            }
     
    104104
    105105        if (!list.isEmpty()) {
    106                 if (list.size() > 1) {
    107                         // create a single command for the previously executed commands
    108                         SequenceCommand seq = new SequenceCommand(TITLE, list);
    109                         for (int i = 0; i < list.size(); i++) {
    110                                 UndoRedoHandler.getInstance().undo();
    111                         }
    112                         UndoRedoHandler.getInstance().add(seq);
     106            if (list.size() > 1) {
     107                // create a single command for the previously executed commands
     108                SequenceCommand seq = new SequenceCommand(TITLE, list);
     109                for (int i = 0; i < list.size(); i++) {
     110                    UndoRedoHandler.getInstance().undo();
     111                }
     112                UndoRedoHandler.getInstance().add(seq);
    113113            }
    114114            getLayerManager().getEditDataSet().clearSelection();
  • applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/actions/TagSourceAction.java

    r34792 r34816  
    4444        UndoRedoHandler.getInstance().add(new ChangePropertyCommand(selection, "source", source));
    4545    }
     46
    4647    @Override
    4748    protected void updateEnabledState() {
     
    5354    }
    5455
    55 
    5656    @Override
    5757    protected void updateEnabledState(Collection<? extends OsmPrimitive> selection) {
    5858        if (!selectionBuf.isEmpty()) {
    59                 String newSource = null;
    60                 for (OsmPrimitive p : selectionBuf) {
    61                         String s = p.get("source");
    62                         if (s != null) {
    63                                 if (newSource == null)
    64                                         newSource = s;
    65                                 else {
    66                                         if (!newSource.equals(s)) {
    67                                                 newSource = null;
    68                                                 break;
    69                                         }
    70                                 }
    71                         }
    72                 }
    73                 if (newSource != null && !newSource.isEmpty()) {
     59            String newSource = null;
     60            for (OsmPrimitive p : selectionBuf) {
     61                String s = p.get("source");
     62                if (s != null) {
     63                    if (newSource == null)
     64                        newSource = s;
     65                    else {
     66                        if (!newSource.equals(s)) {
     67                            newSource = null;
     68                            break;
     69                        }
     70                    }
     71                }
     72            }
     73            if (newSource != null && !newSource.isEmpty()) {
    7474                source = newSource;
    7575                Config.getPref().put("sourcetag.value", source);
    76                 }
     76            }
    7777        }
    7878        selectionBuf = new ArrayList<>(selection);
  • applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/replacegeometry/ReplaceGeometryUtils.java

    r34812 r34816  
    132132     */
    133133    public static ReplaceGeometryCommand buildUpgradeNodeCommand(Node subjectNode, OsmPrimitive referenceObject) {
    134         if (!subjectNode.getParentWays().isEmpty()) {
     134        if (!subjectNode.getParentWays().isEmpty()) {
    135135            throw new ReplaceGeometryException(tr("Node belongs to way(s), cannot replace."));
    136136        }
  • applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/selection/NodeWayUtils.java

    r34814 r34816  
    4848    static void addNeighbours(Way w, Node n, Collection<Node> nodes) {
    4949        if (!n.getParentWays().contains(w))
    50                 return;
     50            return;
    5151
    5252        List<Node> nodeList = w.getNodes();
     
    469469        // select nodes and ways inside selected ways and multipolygons
    470470        for (OsmPrimitive p: selected) {
    471                 if (p instanceof Way) {
    472                         addAllInsideWay(dataset, (Way)p, newWays, newNodes);
    473                 }
     471            if (p instanceof Way) {
     472                addAllInsideWay(dataset, (Way) p, newWays, newNodes);
     473            }
    474474        }
    475475        for (OsmPrimitive p: selected) {
    476                 if (!(p instanceof Relation) || !p.isMultipolygon())
    477                         continue;
    478                 addAllInsideMultipolygon(dataset, (Relation) p, newWays, newNodes);
     476            if ((p instanceof Relation) && p.isMultipolygon()) {
     477                addAllInsideMultipolygon(dataset, (Relation) p, newWays, newNodes);
     478            }
    479479        }
    480480        if (ignoreNodesOfFoundWays) {
  • applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/selection/SelectModNodesAction.java

    r34812 r34816  
    4545            if (num == 0) return;
    4646            int k = 0, idx;
    47          // check if executed again, we cycle through all available commands
    48             if (lastCmd != null && !selection.isEmpty() ) {
     47            // check if executed again, we cycle through all available commands
     48            if (lastCmd != null && !selection.isEmpty()) {
    4949                idx = UndoRedoHandler.getInstance().commands.lastIndexOf(lastCmd);
    5050            } else {
     
    5757                cmd = UndoRedoHandler.getInstance().commands.get(idx);
    5858                if (cmd.getAffectedDataSet() == ds) {
    59                         Collection<? extends OsmPrimitive> pp = cmd.getParticipatingPrimitives();
    60                         nodes.clear();
    61                         for (OsmPrimitive p : pp) {  // find all affected ways
    62                                 if (p instanceof Node && !p.isDeleted()) nodes.add((Node) p);
    63                         }
    64                         if (!nodes.isEmpty() && !ds.getSelectedNodes().containsAll(nodes)) {
    65                                 ds.setSelected(nodes);
    66                                 lastCmd = cmd; // remember last used command and last selection
    67                                 return;
    68                         }
     59                    Collection<? extends OsmPrimitive> pp = cmd.getParticipatingPrimitives();
     60                    nodes.clear();
     61                    for (OsmPrimitive p : pp) {  // find all affected ways
     62                        if (p instanceof Node && !p.isDeleted()) nodes.add((Node) p);
     63                    }
     64                    if (!nodes.isEmpty() && !ds.getSelectedNodes().containsAll(nodes)) {
     65                        ds.setSelected(nodes);
     66                        lastCmd = cmd; // remember last used command and last selection
     67                        return;
     68                    }
    6969                }
    7070                k++;
  • applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/selection/SelectModWaysAction.java

    r34812 r34816  
    4545            int k = 0, idx;
    4646            // check if executed again, we cycle through all available commands
    47             if (lastCmd != null && !ds.getSelectedWays().isEmpty() ) {
     47            if (lastCmd != null && !ds.getSelectedWays().isEmpty()) {
    4848                idx = UndoRedoHandler.getInstance().commands.lastIndexOf(lastCmd);
    4949            } else {
     
    5656                cmd = UndoRedoHandler.getInstance().commands.get(idx);
    5757                if (cmd.getAffectedDataSet() == ds) {
    58                         Collection<? extends OsmPrimitive> pp = cmd.getParticipatingPrimitives();
    59                         ways.clear();
    60                         for (OsmPrimitive p : pp) {
    61                                 // find all affected ways
    62                                 if (p instanceof Way && !p.isDeleted()) ways.add((Way) p);
    63                         }
    64                         if (!ways.isEmpty() && !ds.getSelectedWays().containsAll(ways)) {
    65                                 ds.setSelected(ways);
    66                                 lastCmd = cmd; // remember last used command and last selection
    67                                 return;
    68                         }
     58                    Collection<? extends OsmPrimitive> pp = cmd.getParticipatingPrimitives();
     59                    ways.clear();
     60                    for (OsmPrimitive p : pp) {
     61                        // find all affected ways
     62                        if (p instanceof Way && !p.isDeleted()) ways.add((Way) p);
     63                    }
     64                    if (!ways.isEmpty() && !ds.getSelectedWays().containsAll(ways)) {
     65                        ds.setSelected(ways);
     66                        lastCmd = cmd; // remember last used command and last selection
     67                        return;
     68                    }
    6969                }
    7070                k++;
  • applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/selection/UndoSelectionAction.java

    r34812 r34816  
    4040            if (history == null || history.isEmpty()) return; // empty history
    4141            if (lastSel != null) {
    42                 Collection<OsmPrimitive> selection = ds.getSelected();
    43                 if (lastSel.size() == selection.size() && selection.containsAll(lastSel)) {
    44                         // repeated action
    45                 } else {
    46                         index = -1;
    47                 }
     42                Collection<OsmPrimitive> selection = ds.getSelected();
     43                if (lastSel.size() == selection.size() && selection.containsAll(lastSel)) {
     44                    // repeated action
     45                } else {
     46                    index = -1;
     47                }
    4848            }
    4949
     
    6161                k++;
    6262                if (!newSel.isEmpty()) {
    63                         Collection<OsmPrimitive> oldSel = ds.getSelected();
    64                         if (oldSel.size() == newSel.size() && newSel.containsAll(oldSel)) {
    65                                 // ignore no-change selection
    66                                 continue;
    67                         }
    68                         break;
     63                    Collection<OsmPrimitive> oldSel = ds.getSelected();
     64                    if (oldSel.size() == newSel.size() && newSel.containsAll(oldSel)) {
     65                        // ignore no-change selection
     66                        continue;
     67                    }
     68                    break;
    6969                }
    7070            }
     
    7878    @Override
    7979    protected void updateEnabledState() {
    80         DataSet ds = getLayerManager().getEditDataSet();
    81         lastSel = null;
    82         index = -1;
    83                 setEnabled(ds != null && ds.getSelectionHistory().isEmpty());
     80        DataSet ds = getLayerManager().getEditDataSet();
     81        lastSel = null;
     82        index = -1;
     83        setEnabled(ds != null && ds.getSelectionHistory().isEmpty());
    8484    }
    8585}
Note: See TracChangeset for help on using the changeset viewer.