Remove redundant modifiers from interfaces (#14843)
Signed-off-by: Wouter Born <github@maindrain.net>
This commit is contained in:
@@ -21,5 +21,5 @@ import org.openhab.binding.enocean.internal.messages.EventMessage;
|
||||
*/
|
||||
@NonNullByDefault
|
||||
public interface EventListener {
|
||||
public void eventReceived(EventMessage event);
|
||||
void eventReceived(EventMessage event);
|
||||
}
|
||||
|
||||
@@ -22,7 +22,7 @@ import org.openhab.binding.enocean.internal.messages.BasePacket;
|
||||
@NonNullByDefault
|
||||
public interface PacketListener {
|
||||
|
||||
public void packetReceived(BasePacket packet);
|
||||
void packetReceived(BasePacket packet);
|
||||
|
||||
public long getEnOceanIdToListenTo();
|
||||
long getEnOceanIdToListenTo();
|
||||
}
|
||||
|
||||
@@ -21,5 +21,5 @@ import org.eclipse.jdt.annotation.NonNullByDefault;
|
||||
@NonNullByDefault
|
||||
public interface TransceiverErrorListener {
|
||||
|
||||
public void errorOccured(Throwable exception);
|
||||
void errorOccured(Throwable exception);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user