Ignore:
Timestamp:
2015-08-20T23:11:07+02:00 (11 years ago)
Author:
Don-vip
Message:

fix Checkstyle issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/Selector.java

    r8514 r8674  
    6969    Selector optimizedBaseCheck();
    7070
    71     public static enum ChildOrParentSelectorType {
     71    enum ChildOrParentSelectorType {
    7272        CHILD, PARENT, ELEMENT_OF, CROSSING, SIBLING
    7373    }
     
    8787     *
    8888     */
    89     public static class ChildOrParentSelector implements Selector {
     89    class ChildOrParentSelector implements Selector {
    9090        public final Selector left;
    9191        public final LinkSelector link;
     
    442442     * @since 5841
    443443     */
    444     public abstract static class AbstractSelector implements Selector {
     444    abstract class AbstractSelector implements Selector {
    445445
    446446        protected final List<Condition> conds;
     
    485485    }
    486486
    487     public static class LinkSelector extends AbstractSelector {
     487    class LinkSelector extends AbstractSelector {
    488488
    489489        public LinkSelector(List<Condition> conditions) {
     
    518518    }
    519519
    520     public static class GeneralSelector extends OptimizedGeneralSelector {
     520    class GeneralSelector extends OptimizedGeneralSelector {
    521521
    522522        public GeneralSelector(String base, Pair<Integer, Integer> zoom, List<Condition> conds, Subpart subpart) {
     
    539539    }
    540540
    541     public static class OptimizedGeneralSelector extends AbstractSelector {
     541    class OptimizedGeneralSelector extends AbstractSelector {
    542542        public final String base;
    543543        public final Range range;
Note: See TracChangeset for help on using the changeset viewer.