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

@@ -33,7 +33,7 @@ public interface DeviceStatusListener {
* @param device
* The device which received the state update.
*/
public void onDeviceStateChanged(Bridge bridge, Device device, TellstickEvent deviceEvent);
void onDeviceStateChanged(Bridge bridge, Device device, TellstickEvent deviceEvent);
/**
* This method us called whenever a device is removed.
@@ -43,7 +43,7 @@ public interface DeviceStatusListener {
* @param device
* The device which is removed.
*/
public void onDeviceRemoved(Bridge bridge, Device device);
void onDeviceRemoved(Bridge bridge, Device device);
/**
* This method us called whenever a device is added.
@@ -53,5 +53,5 @@ public interface DeviceStatusListener {
* @param device
* The device which is added.
*/
public void onDeviceAdded(Bridge bridge, Device device);
void onDeviceAdded(Bridge bridge, Device device);
}