Ignore:
Timestamp:
2014-02-27T01:41:49+01:00 (10 years ago)
Author:
Don-vip
Message:

fix some Sonar issues (JLS order)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/preferences/projection/ListProjectionChoice.java

    r6295 r6889  
    1717 * A projection choice, that offers a list of projections in a combo-box.
    1818 */
    19 abstract public class ListProjectionChoice extends AbstractProjectionChoice {
     19public abstract class ListProjectionChoice extends AbstractProjectionChoice {
    2020
    2121    protected int index;        // 0-based index
     
    5454     * Convert 0-based index to preference value.
    5555     */
    56     abstract protected String indexToZone(int index);
     56    protected abstract String indexToZone(int index);
    5757
    5858    /**
    5959     * Convert preference value to 0-based index.
    6060     */
    61     abstract protected int zoneToIndex(String zone);
     61    protected abstract int zoneToIndex(String zone);
    6262
    6363    @Override
Note: See TracChangeset for help on using the changeset viewer.