Ignore:
Timestamp:
2015-10-08T00:22:36+02:00 (9 years ago)
Author:
Don-vip
Message:

fix Checkstyle issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/remotecontrol/AddTagsDialog.java

    r8540 r8836  
    5959        private int num;
    6060
    61         public DeleteTagMarker(int num) {
     61        DeleteTagMarker(int num) {
    6262            this.num = num;
    6363        }
     
    7676        private final Map<String, Integer> valueCount;
    7777
    78         public ExistingValues(String tag) {
     78        ExistingValues(String tag) {
    7979            this.tag = tag;
    8080            this.valueCount = new HashMap<>();
     
    159159            tm.setValueAt(tags[i][0], i, 1);
    160160            tm.setValueAt(tags[i][1].isEmpty() ? new DeleteTagMarker(count[i]) : tags[i][1], i, 2);
    161             tm.setValueAt(old , i, 3);
     161            tm.setValueAt(old, i, 3);
    162162        }
    163163
     
    226226                }
    227227            });
    228             tablePanel.add(c , GBC.eol().insets(20, 10, 0, 0));
     228            tablePanel.add(c, GBC.eol().insets(20, 10, 0, 0));
    229229        }
    230230        setContent(tablePanel);
Note: See TracChangeset for help on using the changeset viewer.