Remove redundant modifiers from interfaces (#14843)
Signed-off-by: Wouter Born <github@maindrain.net>
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
@@ -30,5 +30,5 @@ public interface LifxResponsePacketListener {
|
||||
*
|
||||
* @param packet the received packet
|
||||
*/
|
||||
public void handleResponsePacket(Packet packet);
|
||||
void handleResponsePacket(Packet packet);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user