Ignore:
Timestamp:
2015-06-02T16:40:38+02:00 (9 years ago)
Author:
Don-vip
Message:

remove extra whitespaces

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/ZoomToAction.java

    r7937 r8443  
    2424
    2525    private final OsmPrimitivesTable table;
    26    
     26
    2727    private final String descriptionNominal;
    2828    private final String descriptionInactiveLayer;
    2929    private final String descriptionNoSelection;
    30    
     30
    3131    public ZoomToAction(OsmPrimitivesTable table, String descriptionNominal, String descriptionInactiveLayer, String descriptionNoSelection) {
    3232        CheckParameterUtil.ensureParameterNotNull(table);
     
    3939        updateEnabledState();
    4040    }
    41    
     41
    4242    public ZoomToAction(MemberTable table) {
    43         this(table, 
     43        this(table,
    4444                tr("Zoom to the object the first selected member refers to"),
    4545                tr("Zooming disabled because layer of this relation is not active"),
    4646                tr("Zooming disabled because there is no selected member"));
    4747    }
    48    
     48
    4949    public ZoomToAction(RelationMemberTable table) {
    50         this(table, 
     50        this(table,
    5151                tr("Zoom to the object the first selected member refers to"),
    5252                tr("Zooming disabled because layer of this relation is not active"),
    5353                tr("Zooming disabled because there is no selected member"));
    5454    }
    55    
     55
    5656    public ZoomToAction(NodeListTable table) {
    57         this(table, 
     57        this(table,
    5858                tr("Zoom to the first selected node"),
    5959                tr("Zooming disabled because layer of this way is not active"),
     
    6363    @Override
    6464    public void actionPerformed(ActionEvent e) {
    65         if (! isEnabled())
     65        if (!isEnabled())
    6666            return;
    6767        int[] rows = this.table.getSelectedRows();
Note: See TracChangeset for help on using the changeset viewer.