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,8 +36,8 @@ public interface SmartthingsHubCommand {
* @throws TimeoutException
* @throws ExecutionException
*/
public void sendDeviceCommand(@NonNull String path, int timeout, @NonNull String data)
void sendDeviceCommand(@NonNull String path, int timeout, @NonNull String data)
throws InterruptedException, TimeoutException, ExecutionException;
public ThingUID getBridgeUID();
ThingUID getBridgeUID();
}