We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8eb2062 commit 41cbee0Copy full SHA for 41cbee0
src/main/java/org/scribe/builder/api/DefaultApi10a.java
@@ -82,12 +82,12 @@ public Verb getRequestTokenVerb()
82
*/
83
public OAuthService createService(OAuthConfig config, String scope)
84
{
85
- OAuthService service = createService(config);
+ OAuthService service = doCreateService(config);
86
service.addScope(scope);
87
return service;
88
}
89
90
- private OAuthService createService(OAuthConfig config)
+ private OAuthService doCreateService(OAuthConfig config)
91
92
return new OAuth10aServiceImpl(this, config);
93
0 commit comments