Ignore:
Timestamp:
2014-02-25T01:31:24+01:00 (10 years ago)
Author:
Don-vip
Message:

fix some Sonar issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/corrector/CorrectionTableModel.java

    r6084 r6883  
    99import javax.swing.table.AbstractTableModel;
    1010
    11 public abstract class CorrectionTableModel<C extends Correction> extends
    12         AbstractTableModel {
     11public abstract class CorrectionTableModel<C extends Correction> extends AbstractTableModel {
    1312
    1413    private List<C> corrections;
     
    1716
    1817    public CorrectionTableModel(List<C> corrections) {
    19         super();
    2018        this.corrections = corrections;
    2119        apply = new boolean[this.corrections.size()];
     
    2523
    2624    @Override
    27     abstract public int getColumnCount();
     25    public abstract int getColumnCount();
    2826
    29     abstract protected boolean isBoldCell(int row, int column);
    30     abstract public String getCorrectionColumnName(int colIndex);
    31     abstract public Object getCorrectionValueAt(int rowIndex, int colIndex);
     27    protected abstract boolean isBoldCell(int row, int column);
     28    public abstract String getCorrectionColumnName(int colIndex);
     29    public abstract Object getCorrectionValueAt(int rowIndex, int colIndex);
    3230
    3331    public List<C> getCorrections() {
Note: See TracChangeset for help on using the changeset viewer.