Ignore:
Timestamp:
2015-06-27T21:43:35+02:00 (9 years ago)
Author:
Don-vip
Message:

fix remaining checkstyle issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/query/AdvancedChangesetQueryPanel.java

    r8513 r8540  
    527527                    query.forUser(im.getUserId());
    528528                } else
    529                     throw new IllegalStateException(tr("Cannot restrict changeset query to the current user because the current user is anonymous"));
     529                    throw new IllegalStateException(
     530                            tr("Cannot restrict changeset query to the current user because the current user is anonymous"));
    530531            } else if (rbRestrictToUid.isSelected()) {
    531532                int uid  = valUid.getUid();
     
    536537            } else if (rbRestrictToUserName.isSelected()) {
    537538                if (!valUserName.isValid())
    538                     throw new IllegalStateException(tr("Cannot restrict the changeset query to the user name ''{0}''", tfUserName.getText()));
     539                    throw new IllegalStateException(
     540                            tr("Cannot restrict the changeset query to the user name ''{0}''", tfUserName.getText()));
    539541                query.forUser(tfUserName.getText());
    540542            }
Note: See TracChangeset for help on using the changeset viewer.