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 PacketHandler<T extends Packet> {
* @throws IllegalArgumentException when an empty packet could not be created or the data in the buffer
* could not be parsed
*/
public abstract T handle(ByteBuffer buf);
T handle(ByteBuffer buf);
}

View File

@@ -31,5 +31,5 @@ public interface LifxPropertiesUpdateListener {
*
* @param packet the updated properties
*/
public void handlePropertiesUpdate(Map<String, String> properties);
void handlePropertiesUpdate(Map<String, String> properties);
}

View File

@@ -30,5 +30,5 @@ public interface LifxResponsePacketListener {
*
* @param packet the received packet
*/
public void handleResponsePacket(Packet packet);
void handleResponsePacket(Packet packet);
}