Skip to content

Commit 8eaf4d9

Browse files
committed
Removed unnecessary semicolon
1 parent 11bd7c2 commit 8eaf4d9

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)