Remove redundant modifiers from interfaces (#14843)
Signed-off-by: Wouter Born <github@maindrain.net>
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user