From c03cb8abf4cb48e9816d8f2642e6e60823627689 Mon Sep 17 00:00:00 2001 From: Edoardo La Greca Date: Mon, 11 Aug 2025 20:07:05 +0200 Subject: change types of readFunand writeFun in Authenticator --- src/main/kotlin/Authenticator.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/kotlin/Authenticator.kt') diff --git a/src/main/kotlin/Authenticator.kt b/src/main/kotlin/Authenticator.kt index 47747f3..932004f 100644 --- a/src/main/kotlin/Authenticator.kt +++ b/src/main/kotlin/Authenticator.kt @@ -14,5 +14,5 @@ interface Authenticator { * @throws except.FailedAuthenticationException if the authentication could not be performed. A human-readable * reason for the failure can be provided if necessary. */ - fun authenticate(username: String, password: String, readFun: () -> Array, writeFun: (b: Array) -> Unit) + fun authenticate(username: String, password: String, readFun: () -> List, writeFun: (b: List) -> Unit) } \ No newline at end of file -- cgit v1.2.3