Changeset 8291 in josm for trunk/src/org/openstreetmap/josm/data/oauth
- Timestamp:
- 2015-04-29T01:44:01+02:00 (10 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data/oauth
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/oauth/OAuthParameters.java
r6897 r8291 119 119 * 120 120 * @param other the other parameters. Must not be null. 121 * @throws IllegalArgumentException thrownif other is null122 */ 123 public OAuthParameters(OAuthParameters other) throws IllegalArgumentException{121 * @throws IllegalArgumentException if other is null 122 */ 123 public OAuthParameters(OAuthParameters other) { 124 124 CheckParameterUtil.ensureParameterNotNull(other, "other"); 125 125 this.consumerKey = other.consumerKey; … … 226 226 * @throws IllegalArgumentException if consumer is null 227 227 */ 228 public OAuthProvider buildProvider(OAuthConsumer consumer) throws IllegalArgumentException{228 public OAuthProvider buildProvider(OAuthConsumer consumer) { 229 229 CheckParameterUtil.ensureParameterNotNull(consumer, "consumer"); 230 230 return new DefaultOAuthProvider( -
trunk/src/org/openstreetmap/josm/data/oauth/OAuthToken.java
r6883 r8291 36 36 * 37 37 * @param other the other token. Must not be null. 38 * @throws IllegalArgumentException thrownif other is null38 * @throws IllegalArgumentException if other is null 39 39 */ 40 public OAuthToken(OAuthToken other) throws IllegalArgumentException{40 public OAuthToken(OAuthToken other) { 41 41 CheckParameterUtil.ensureParameterNotNull(other, "other"); 42 42 this.key = other.key;
Note:
See TracChangeset
for help on using the changeset viewer.