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

@@ -36,5 +36,5 @@ public interface DeviceInfoClient {
final int propertyId, final int start, final int elements, boolean authenticate, long timeout)
throws InterruptedException;
public boolean isConnected();
boolean isConnected();
}

View File

@@ -32,5 +32,5 @@ public interface GroupAddressListener extends BusMessageListener {
*
* @param destination
*/
public boolean listensTo(GroupAddress destination);
boolean listensTo(GroupAddress destination);
}