Ignore:
Timestamp:
2015-06-20T23:42:21+02:00 (9 years ago)
Author:
Don-vip
Message:

checkstyle: enable relevant whitespace checks and fix them

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/history/SelectionSynchronizer.java

    r8390 r8510  
    3232    @Override
    3333    public void valueChanged(ListSelectionEvent e) {
    34         DefaultListSelectionModel referenceModel = (DefaultListSelectionModel)e.getSource();
     34        DefaultListSelectionModel referenceModel = (DefaultListSelectionModel) e.getSource();
    3535        int i = referenceModel.getMinSelectionIndex();
    3636        for (ListSelectionModel model : participants) {
     
    3838                continue;
    3939            }
    40             model.setSelectionInterval(i,i);
     40            model.setSelectionInterval(i, i);
    4141        }
    4242    }
Note: See TracChangeset for help on using the changeset viewer.