Ignore:
Timestamp:
2015-10-08T00:22:36+02:00 (9 years ago)
Author:
Don-vip
Message:

fix Checkstyle issues

Location:
trunk/src/org/openstreetmap/josm/gui/preferences/server
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/preferences/server/OAuthAuthenticationPreferencesPanel.java

    r8510 r8836  
    183183         * Constructs a new {@code NotYetAuthorisedPanel}.
    184184         */
    185         public NotYetAuthorisedPanel() {
     185        NotYetAuthorisedPanel() {
    186186            build();
    187187        }
     
    305305         * Constructs a new {@code AlreadyAuthorisedPanel}.
    306306         */
    307         public AlreadyAuthorisedPanel() {
     307        AlreadyAuthorisedPanel() {
    308308            build();
    309309            refreshView();
     
    315315     */
    316316    private class AuthoriseNowAction extends AbstractAction {
    317         public AuthoriseNowAction() {
     317        AuthoriseNowAction() {
    318318            putValue(NAME, tr("Authorize now"));
    319319            putValue(SHORT_DESCRIPTION, tr("Click to step through the OAuth authorization process"));
     
    344344         * Constructs a new {@code RenewAuthorisationAction}.
    345345         */
    346         public RenewAuthorisationAction() {
     346        RenewAuthorisationAction() {
    347347            putValue(NAME, tr("New Access Token"));
    348348            putValue(SHORT_DESCRIPTION, tr("Click to step through the OAuth authorization process and generate a new Access Token"));
     
    374374         * Constructs a new {@code TestAuthorisationAction}.
    375375         */
    376         public TestAuthorisationAction() {
     376        TestAuthorisationAction() {
    377377            putValue(NAME, tr("Test Access Token"));
    378378            putValue(SHORT_DESCRIPTION, tr("Click test access to the OSM server with the current access token"));
  • trunk/src/org/openstreetmap/josm/gui/preferences/server/OsmApiUrlInputPanel.java

    r8510 r8836  
    170170        private String lastTestedUrl = null;
    171171
    172         public ValidateApiUrlAction() {
     172        ValidateApiUrlAction() {
    173173            putValue(NAME, tr("Validate"));
    174174            putValue(SHORT_DESCRIPTION, tr("Test the API URL"));
     
    243243
    244244    private static class ApiUrlValidator extends AbstractTextComponentValidator {
    245         public ApiUrlValidator(JTextComponent tc) {
     245        ApiUrlValidator(JTextComponent tc) {
    246246            super(tc);
    247247        }
Note: See TracChangeset for help on using the changeset viewer.