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/gui/dialogs/relation/ChildRelationBrowser.java

    r8510 r8836  
    173173     */
    174174    class EditAction extends AbstractAction implements TreeSelectionListener {
    175         public EditAction() {
     175        EditAction() {
    176176            putValue(SHORT_DESCRIPTION, tr("Edit the relation the currently selected relation member refers to."));
    177177            putValue(SMALL_ICON, ImageProvider.get("dialogs", "edit"));
     
    218218     */
    219219    class DownloadAllChildRelationsAction extends AbstractAction{
    220         public DownloadAllChildRelationsAction() {
     220        DownloadAllChildRelationsAction() {
    221221            putValue(SHORT_DESCRIPTION, tr("Download all child relations (recursively)"));
    222222            putValue(SMALL_ICON, ImageProvider.get("download"));
     
    240240     */
    241241    class DownloadSelectedAction extends AbstractAction implements TreeSelectionListener {
    242         public DownloadSelectedAction() {
     242        DownloadSelectedAction() {
    243243            putValue(SHORT_DESCRIPTION, tr("Download selected relations"));
    244244            // FIXME: replace with better icon
     
    283283        protected Exception lastException;
    284284
    285         public DownloadTask(String title, Dialog parent) {
     285        DownloadTask(String title, Dialog parent) {
    286286            super(title, new PleaseWaitProgressMonitor(parent), false);
    287287        }
     
    332332        private final Set<Long> downloadedRelationIds;
    333333
    334         public DownloadAllChildrenTask(Dialog parent, Relation r) {
     334        DownloadAllChildrenTask(Dialog parent, Relation r) {
    335335            super(tr("Download relation members"), parent);
    336336            this.relation = r;
     
    443443        private final Set<Relation> relations;
    444444
    445         public DownloadRelationSetTask(Dialog parent, Set<Relation> relations) {
     445        DownloadRelationSetTask(Dialog parent, Set<Relation> relations) {
    446446            super(tr("Download relation members"), parent);
    447447            this.relations = relations;
Note: See TracChangeset for help on using the changeset viewer.