Remove redundant modifiers from interfaces (#14843)
Signed-off-by: Wouter Born <github@maindrain.net>
This commit is contained in:
@@ -25,5 +25,5 @@ import org.eclipse.jdt.annotation.NonNullByDefault;
|
||||
@NonNullByDefault
|
||||
public interface RunnableWithTimeout {
|
||||
|
||||
public abstract void run() throws TimeoutException;
|
||||
void run() throws TimeoutException;
|
||||
}
|
||||
|
||||
@@ -20,5 +20,5 @@ package org.openhab.binding.evohome.internal.api.models.v2.dto.request;
|
||||
*/
|
||||
public interface RequestBuilder<T> {
|
||||
|
||||
public T build();
|
||||
T build();
|
||||
}
|
||||
|
||||
@@ -29,5 +29,5 @@ public interface AccountStatusListener {
|
||||
*
|
||||
* @param status The new status of the account thing
|
||||
*/
|
||||
public void accountStatusChanged(ThingStatus status);
|
||||
void accountStatusChanged(ThingStatus status);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user