From e078a5cd982a615a93c60957fa6e25cab43a7734 Mon Sep 17 00:00:00 2001 From: Wouter Born Date: Tue, 17 Dec 2024 23:00:09 +0100 Subject: [PATCH] Fix JavaDoc build (#4504) Signed-off-by: Wouter Born --- .../org/openhab/core/auth/client/oauth2/OAuthClientService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/org.openhab.core/src/main/java/org/openhab/core/auth/client/oauth2/OAuthClientService.java b/bundles/org.openhab.core/src/main/java/org/openhab/core/auth/client/oauth2/OAuthClientService.java index ae0d04533..32a9baac0 100644 --- a/bundles/org.openhab.core/src/main/java/org/openhab/core/auth/client/oauth2/OAuthClientService.java +++ b/bundles/org.openhab.core/src/main/java/org/openhab/core/auth/client/oauth2/OAuthClientService.java @@ -173,7 +173,7 @@ public interface OAuthClientService extends AutoCloseable { * @throws OAuthException Other exceptions * @throws OAuthResponseException Error codes given by authorization provider, as in RFC 6749 section 5.2 Error * Response - * @see rfc6749 section-4.3.2 + * @see rfc6749 section-4.3.2 */ AccessTokenResponse getAccessTokenByResourceOwnerPasswordCredentials(String username, String password, @Nullable String scope) throws OAuthException, IOException, OAuthResponseException;