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

@@ -31,7 +31,7 @@ public interface CoapCallback {
*
* @param data the received json structure
*/
public void onUpdate(JsonElement data);
void onUpdate(JsonElement data);
/**
* Tells the listener to set the Thing status.
@@ -40,5 +40,5 @@ public interface CoapCallback {
* @param status The thing status
* @param statusDetail the status detail
*/
public void setStatus(ThingStatus status, ThingStatusDetail statusDetail);
void setStatus(ThingStatus status, ThingStatusDetail statusDetail);
}

View File

@@ -32,5 +32,5 @@ public interface DeviceUpdateListener {
* @param instanceId The instance id of the device
* @param data the json data describing the device
*/
public void onUpdate(String instanceId, JsonObject data);
void onUpdate(String instanceId, JsonObject data);
}