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/mappaint/StyleSource.java

    r6289 r6889  
    2121import org.openstreetmap.josm.tools.Utils;
    2222
    23 abstract public class StyleSource extends SourceEntry {
     23public abstract class StyleSource extends SourceEntry {
    2424
    2525    private List<Throwable> errors = new ArrayList<Throwable>();
     
    4444    }
    4545
    46     abstract public void apply(MultiCascade mc, OsmPrimitive osm, double scale, OsmPrimitive multipolyOuterWay, boolean pretendWayIsClosed);
     46    public abstract void apply(MultiCascade mc, OsmPrimitive osm, double scale, OsmPrimitive multipolyOuterWay, boolean pretendWayIsClosed);
    4747
    48     abstract public void loadStyleSource();
     48    public abstract void loadStyleSource();
    4949
    5050    /**
     
    5454     * @see #closeSourceInputStream(InputStream)
    5555     */
    56     abstract public InputStream getSourceInputStream() throws IOException;
     56    public abstract InputStream getSourceInputStream() throws IOException;
    5757
    5858    /**
     
    101101    }
    102102
    103     final public ImageIcon getIcon() {
     103    public final ImageIcon getIcon() {
    104104        if (getErrors().isEmpty())
    105105            return getSourceIcon();
Note: See TracChangeset for help on using the changeset viewer.