Ignore:
Timestamp:
2014-02-25T01:31:24+01:00 (10 years ago)
Author:
Don-vip
Message:

fix some Sonar issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/bbox/TileSelectionBBoxChooser.java

    r6822 r6883  
    217217     *
    218218     */
    219     static private class TileGridInputPanel extends JPanel implements PropertyChangeListener{
    220         static public final String TILE_BOUNDS_PROP = TileGridInputPanel.class.getName() + ".tileBounds";
     219    private static class TileGridInputPanel extends JPanel implements PropertyChangeListener{
     220        public static final String TILE_BOUNDS_PROP = TileGridInputPanel.class.getName() + ".tileBounds";
    221221
    222222        private JosmTextField tfMaxY;
     
    437437     *
    438438     */
    439     static private class TileAddressInputPanel extends JPanel {
    440 
    441         static public final String TILE_BOUNDS_PROP = TileAddressInputPanel.class.getName() + ".tileBounds";
     439    private static class TileAddressInputPanel extends JPanel {
     440
     441        public static final String TILE_BOUNDS_PROP = TileAddressInputPanel.class.getName() + ".tileBounds";
    442442
    443443        private JosmTextField tfTileAddress;
     
    526526     * Validates a tile address
    527527     */
    528     static private class TileAddressValidator extends AbstractTextComponentValidator {
     528    private static class TileAddressValidator extends AbstractTextComponentValidator {
    529529
    530530        private TileBounds tileBounds = null;
     
    585585     *
    586586     */
    587     static private class TileCoordinateValidator extends AbstractTextComponentValidator {
     587    private static class TileCoordinateValidator extends AbstractTextComponentValidator {
    588588        private int zoomLevel;
    589589        private int tileIndex;
     
    633633     *
    634634     */
    635     static private class TileBounds {
     635    private static class TileBounds {
    636636        public Point min;
    637637        public Point max;
     
    663663     * The map view used in this bounding box chooser
    664664     */
    665     static private class TileBoundsMapView extends JMapViewer {
     665    private static class TileBoundsMapView extends JMapViewer {
    666666        private Point min;
    667667        private Point max;
Note: See TracChangeset for help on using the changeset viewer.