Ignore:
Timestamp:
2015-06-21T03:19:37+02:00 (11 years ago)
Author:
Don-vip
Message:

checkstyle: various checks

Location:
trunk/src/org/openstreetmap/josm/gui
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/ChangesetDialog.java

    r8510 r8514  
    479479     * A utility class to fetch changesets and display the changeset dialog.
    480480     */
    481     public static class LaunchChangesetManager {
     481    public static final class LaunchChangesetManager {
    482482
    483483        private LaunchChangesetManager() {
  • trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/Condition.java

    r8510 r8514  
    486486        public final boolean not;
    487487
    488         private PseudoClassCondition(Method method, boolean not) {
     488        protected PseudoClassCondition(Method method, boolean not) {
    489489            this.method = method;
    490490            this.not = not;
     
    501501            }
    502502            throw new IllegalArgumentException("Invalid pseudo class specified: " + id);
    503 
    504503        }
    505504
  • trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/ExpressionFactory.java

    r8510 r8514  
    108108     */
    109109    @SuppressWarnings("UnusedDeclaration")
    110     public static class Functions {
     110    public static final class Functions {
    111111
    112112        private Functions() {
  • trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/Selector.java

    r8510 r8514  
    266266
    267267        private class ContainsFinder extends AbstractFinder {
    268             private ContainsFinder(Environment e) {
     268            protected ContainsFinder(Environment e) {
    269269                super(e);
    270270                CheckParameterUtil.ensureThat(!(e.osm instanceof Node), "Nodes not supported");
Note: See TracChangeset for help on using the changeset viewer.