Ignore:
Timestamp:
2015-06-20T14:36:00+02:00 (9 years ago)
Author:
Don-vip
Message:

fix many checkstyle violations

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/command/conflict/TagConflictResolveCommand.java

    r8456 r8509  
    5858            case NODE:
    5959                /* for correct i18n of plural forms - see #9110 */
    60                 return trn("Resolve {0} tag conflict in node {1}", "Resolve {0} tag conflicts in node {1}", getNumDecidedConflicts(), getNumDecidedConflicts(), conflict.getMy().getId());
     60                return trn("Resolve {0} tag conflict in node {1}", "Resolve {0} tag conflicts in node {1}",
     61                        getNumDecidedConflicts(), getNumDecidedConflicts(), conflict.getMy().getId());
    6162            case WAY:
    6263                /* for correct i18n of plural forms - see #9110 */
    63                 return trn("Resolve {0} tag conflict in way {1}", "Resolve {0} tag conflicts in way {1}", getNumDecidedConflicts(), getNumDecidedConflicts(), conflict.getMy().getId());
     64                return trn("Resolve {0} tag conflict in way {1}", "Resolve {0} tag conflicts in way {1}",
     65                        getNumDecidedConflicts(), getNumDecidedConflicts(), conflict.getMy().getId());
    6466            case RELATION:
    6567                /* for correct i18n of plural forms - see #9110 */
    66                 return trn("Resolve {0} tag conflict in relation {1}", "Resolve {0} tag conflicts in relation {1}", getNumDecidedConflicts(), getNumDecidedConflicts(), conflict.getMy().getId());
     68                return trn("Resolve {0} tag conflict in relation {1}", "Resolve {0} tag conflicts in relation {1}",
     69                        getNumDecidedConflicts(), getNumDecidedConflicts(), conflict.getMy().getId());
    6770        }
    6871        return "";
Note: See TracChangeset for help on using the changeset viewer.