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/oauth/FullyAutomaticAuthorizationUI.java

    r8510 r8836  
    337337     */
    338338    class RunAuthorisationAction extends AbstractAction implements DocumentListener{
    339         public RunAuthorisationAction() {
     339        RunAuthorisationAction() {
    340340            putValue(NAME, tr("Authorize now"));
    341341            putValue(SMALL_ICON, ImageProvider.get("oauth", "oauth-small"));
     
    373373     */
    374374    class BackAction extends AbstractAction {
    375         public BackAction() {
     375        BackAction() {
    376376            putValue(NAME, tr("Back"));
    377377            putValue(SHORT_DESCRIPTION, tr("Run the automatic authorization steps again"));
     
    389389     */
    390390    class TestAccessTokenAction extends AbstractAction {
    391         public TestAccessTokenAction() {
     391        TestAccessTokenAction() {
    392392            putValue(NAME, tr("Test Access Token"));
    393393            putValue(SMALL_ICON, ImageProvider.get("logo"));
     
    406406
    407407    private static class UserNameValidator extends AbstractTextComponentValidator {
    408         public UserNameValidator(JTextComponent tc) {
     408        UserNameValidator(JTextComponent tc) {
    409409            super(tc);
    410410        }
     
    427427    private static class PasswordValidator extends AbstractTextComponentValidator {
    428428
    429         public PasswordValidator(JTextComponent tc) {
     429        PasswordValidator(JTextComponent tc) {
    430430            super(tc);
    431431        }
     
    450450        private OsmOAuthAuthorizationClient authClient;
    451451
    452         public FullyAutomaticAuthorisationTask(Component parent) {
     452        FullyAutomaticAuthorisationTask(Component parent) {
    453453            super(parent, tr("Authorize JOSM to access the OSM API"), false /* don't ignore exceptions */);
    454454        }
Note: See TracChangeset for help on using the changeset viewer.