Skip to content

Commit 47e176a

Browse files
committed
Merge pull request jaliss#536 from tototoshi/patch-1
Removed unnecessary semicolon
2 parents 88e6a7c + 8eaf4d9 commit 47e176a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

module-code/app/securesocial/core/OAuth2Provider.scala

+3-3
Original file line numberDiff line numberDiff line change
@@ -243,9 +243,9 @@ object OAuth2Settings {
243243
val propertyKey = s"securesocial.$id."
244244

245245
val result = for {
246-
authorizationUrl <- loadProperty(id, OAuth2Settings.AuthorizationUrl);
247-
accessToken <- loadProperty(id, OAuth2Settings.AccessTokenUrl);
248-
clientId <- loadProperty(id, OAuth2Settings.ClientId);
246+
authorizationUrl <- loadProperty(id, OAuth2Settings.AuthorizationUrl)
247+
accessToken <- loadProperty(id, OAuth2Settings.AccessTokenUrl)
248+
clientId <- loadProperty(id, OAuth2Settings.ClientId)
249249
clientSecret <- loadProperty(id, OAuth2Settings.ClientSecret)
250250
} yield {
251251
val config = Play.current.configuration

0 commit comments

Comments
 (0)