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

@@ -25,20 +25,20 @@ public interface ProcessorInterface {
/*
* Set the channel group Id for the station
*/
public void setChannelGroupId();
void setChannelGroupId();
/*
* Set the number of remote sensors supported by the station
*/
public void setNumberOfSensors();
void setNumberOfSensors();
/*
* Updates the info channels (i.e. name and location) for a station
*/
public void processInfoUpdate(AmbientWeatherStationHandler handler, String station, String name, String location);
void processInfoUpdate(AmbientWeatherStationHandler handler, String station, String name, String location);
/*
* Updates the weather data channels for a station
*/
public void processWeatherData(AmbientWeatherStationHandler handler, String station, String jsonData);
void processWeatherData(AmbientWeatherStationHandler handler, String station, String jsonData);
}