Ignore:
Timestamp:
2013-07-17T00:01:07+02:00 (12 years ago)
Author:
stoecker
Message:

see #8853 remove tabs, trailing spaces, windows line ends, strange characters

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/oauth/OAuthParameters.java

    r6067 r6069  
    6464     * at the given API url. URL parameters are only set if the URL equals {@link OsmApi#DEFAULT_API_URL}
    6565     * or references the domain "dev.openstreetmap.org", otherwise they may be <code>null</code>.
    66      * 
     66     *
    6767     * @param apiUrl The API URL for which the OAuth default parameters are created. If null or empty, the default OSM API url is used.
    6868     * @return a set of default parameters for the given {@code apiUrl}
     
    133133    /**
    134134     * Constructs a new, unitialized, {@code OAuthParameters}.
    135      * 
     135     *
    136136     * @see #createDefault
    137137     * @see #createFromPreferences
     
    162162        return consumerKey;
    163163    }
    164    
     164
    165165    /**
    166166     * Sets the consumer key.
     
    170170        this.consumerKey = consumerKey;
    171171    }
    172    
    173     /**
    174      * Gets the consumer secret. 
     172
     173    /**
     174     * Gets the consumer secret.
    175175     * @return The consumer secret
    176176     */
     
    178178        return consumerSecret;
    179179    }
    180    
     180
    181181    /**
    182182     * Sets the consumer secret.
     
    186186        this.consumerSecret = consumerSecret;
    187187    }
    188    
     188
    189189    /**
    190190     * Gets the request token URL.
     
    194194        return requestTokenUrl;
    195195    }
    196    
     196
    197197    /**
    198198     * Sets the request token URL.
     
    202202        this.requestTokenUrl = requestTokenUrl;
    203203    }
    204    
     204
    205205    /**
    206206     * Gets the access token URL.
     
    210210        return accessTokenUrl;
    211211    }
    212    
     212
    213213    /**
    214214     * Sets the access token URL.
     
    218218        this.accessTokenUrl = accessTokenUrl;
    219219    }
    220    
     220
    221221    /**
    222222     * Gets the authorise URL.
     
    226226        return authoriseUrl;
    227227    }
    228    
     228
    229229    /**
    230230     * Sets the authorise URL.
Note: See TracChangeset for help on using the changeset viewer.