Remove redundant modifiers from interfaces (#14843)

Signed-off-by: Wouter Born <github@maindrain.net>
This commit is contained in:
Wouter Born
2023-04-18 13:07:04 +02:00
committed by GitHub
parent 24adc5aa12
commit 83cbe746d0
174 changed files with 806 additions and 774 deletions

View File

@@ -26,5 +26,5 @@ public interface OAuthTokenRefreshListener {
*
* @param accessToken The new access token.
*/
public void onNewAccessToken(String accessToken);
void onNewAccessToken(String accessToken);
}

View File

@@ -33,14 +33,14 @@ public interface OAuthTokenRefresher {
* @throws OAuthException if the listener needs to be registered at an underlying service which is not available
* because the account has not yet been authorized
*/
public void setRefreshListener(OAuthTokenRefreshListener listener, String serviceHandle);
void setRefreshListener(OAuthTokenRefreshListener listener, String serviceHandle);
/**
* Unsets a listener.
*
* @param serviceHandle The service handle identifying the internal OAuth configuration.
*/
public void unsetRefreshListener(String serviceHandle);
void unsetRefreshListener(String serviceHandle);
/**
* Refreshes the access and refresh tokens for the given service handle. If an {@link OAuthTokenRefreshListener} is
@@ -52,7 +52,7 @@ public interface OAuthTokenRefresher {
* @param serviceHandle The service handle identifying the internal OAuth configuration.
* @throws OAuthException if the token cannot be obtained or refreshed
*/
public void refreshToken(String serviceHandle);
void refreshToken(String serviceHandle);
/**
* Gets the currently stored access token from persistent storage.
@@ -60,7 +60,7 @@ public interface OAuthTokenRefresher {
* @param serviceHandle The service handle identifying the internal OAuth configuration.
* @return The currently stored access token or an empty {@link Optional} if there is no stored token.
*/
public Optional<String> getAccessTokenFromStorage(String serviceHandle);
Optional<String> getAccessTokenFromStorage(String serviceHandle);
/**
* Removes the tokens from persistent storage.
@@ -70,5 +70,5 @@ public interface OAuthTokenRefresher {
*
* @param serviceHandle The service handle identifying the internal OAuth configuration.
*/
public void removeTokensFromStorage(String serviceHandle);
void removeTokensFromStorage(String serviceHandle);
}

View File

@@ -27,5 +27,5 @@ public interface MieleWebserviceFactory {
* @param configuration The configuration holding all required parameters to construct the instance.
* @return A new {@link MieleWebservice}.
*/
public MieleWebservice create(MieleWebserviceConfiguration configuration);
MieleWebservice create(MieleWebserviceConfiguration configuration);
}