Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
xanderume committed Jul 11, 2024
1 parent 8a8cdc2 commit 5fad385
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class AuthenticationFacade(

fun registerAuthenticator(authenticator: Authenticator) {
this.authenticators.add(authenticator)
this.authenticators.sortWith(compareByDescending { authenticator.priority() })
this.authenticators.sortWith(compareByDescending { it.priority() })
}

fun authenticateByCredentials(credentials: Credentials): Result<out AccessTokenDto, ErrorResponse> =
Expand Down

0 comments on commit 5fad385

Please sign in to comment.