Ignore:
Timestamp:
2013-07-17T00:01:49+02:00 (11 years ago)
Author:
stoecker
Message:

see #8853 remove tabs, trailing spaces, windows line ends, strange characters

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/CommandStackDialog.java

    r5958 r6070  
    7575    private SelectAction selectAction = new SelectAction();
    7676    private SelectAndZoomAction selectAndZoomAction = new SelectAndZoomAction();
    77    
     77
    7878    public CommandStackDialog(final MapFrame mapFrame) {
    7979        super(tr("Command Stack"), "commandstack", tr("Open a list of all commands (undo buffer)."),
     
    8989        undoTree.getSelectionModel().addTreeSelectionListener(undoSelectionListener);
    9090        InputMapUtils.unassignCtrlShiftUpDown(undoTree, JComponent.WHEN_FOCUSED);
    91        
     91
    9292        redoTree.addMouseListener(new MouseEventHandler());
    9393        redoTree.setRootVisible(false);
     
    124124            new SideButton(redoAction)
    125125        }));
    126        
     126
    127127        InputMapUtils.addEnterAction(undoTree, selectAndZoomAction);
    128128        InputMapUtils.addEnterAction(redoTree, selectAndZoomAction);
     
    303303        return node;
    304304    }
    305    
     305
    306306    /**
    307307     * Return primitives that are affected by some command
    308      * @param path GUI elements 
    309      * @return collection of affected primitives, onluy usable ones 
     308     * @param path GUI elements
     309     * @return collection of affected primitives, onluy usable ones
    310310     */
    311311    protected static FilteredCollection<OsmPrimitive> getAffectedPrimitives(TreePath path) {
     
    354354            Main.map.mapView.getEditLayer().data.setSelected( getAffectedPrimitives(path));
    355355        }
    356        
     356
    357357        @Override
    358358        public void updateEnabledState() {
     
    377377        }
    378378    }
    379    
     379
    380380    /**
    381381     * undo / redo switch to reduce duplicate code
     
    448448            super(new CommandStackPopup());
    449449        }
    450        
     450
    451451        @Override
    452452        public void mouseClicked(MouseEvent evt) {
     
    456456        }
    457457    }
    458    
     458
    459459    private class CommandStackPopup extends JPopupMenu {
    460460        public CommandStackPopup(){
Note: See TracChangeset for help on using the changeset viewer.