Changeset 8540 in josm for trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/query/AdvancedChangesetQueryPanel.java
- Timestamp:
- 2015-06-27T21:43:35+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/query/AdvancedChangesetQueryPanel.java
r8513 r8540 527 527 query.forUser(im.getUserId()); 528 528 } 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")); 530 531 } else if (rbRestrictToUid.isSelected()) { 531 532 int uid = valUid.getUid(); … … 536 537 } else if (rbRestrictToUserName.isSelected()) { 537 538 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())); 539 541 query.forUser(tfUserName.getText()); 540 542 }
Note:
See TracChangeset
for help on using the changeset viewer.