Ignore:
Timestamp:
2015-04-28T00:49:49+02:00 (9 years ago)
Author:
Don-vip
Message:

fix sonar squid:S2039 - Member variable visibility should be specified

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/progress/AbstractProgressMonitor.java

    r7005 r8285  
    1010
    1111    private static class Request {
    12         AbstractProgressMonitor originator;
    13         int childTicks;
    14         double currentValue;
    15 
    16         String title;
    17         String customText;
    18         String extraText;
    19         Boolean intermediate;
    20 
    21         boolean finishRequested;
     12        private AbstractProgressMonitor originator;
     13        private int childTicks;
     14        private double currentValue;
     15
     16        private String title;
     17        private String customText;
     18        private String extraText;
     19        private Boolean intermediate;
     20
     21        private boolean finishRequested;
    2222    }
    2323
     
    2828    protected State state = State.INIT;
    2929
    30     int ticksCount;
    31     int ticks;
     30    private int ticksCount;
     31    private int ticks;
    3232    private int childTicks;
    3333
Note: See TracChangeset for help on using the changeset viewer.