Typos a/an (#13876)

This commit is contained in:
Дилян Палаузов
2022-12-08 22:12:49 +02:00
committed by GitHub
parent 177ce2a217
commit 0ffc5257d5
140 changed files with 166 additions and 166 deletions

View File

@@ -247,7 +247,7 @@ public class RioSystemDeviceDiscoveryService extends AbstractDiscoveryService {
final String r = listener.getResponse();
final Matcher m = respPattern.matcher(r);
if (m.matches() && m.groupCount() >= groupNum) {
logger.debug("Message '{}' returned an valid response: {}", message, r);
logger.debug("Message '{}' returned a valid response: {}", message, r);
return m.group(groupNum);
}
logger.debug("Message '{}' returned an invalid response: {}", message, r);

View File

@@ -24,7 +24,7 @@ import org.openhab.core.types.State;
/**
* Defines an implementation of {@link RioHandlerCallback} that will remember the last state
* for an channelId and suppress the callback if the state hasn't changed
* for a channelId and suppress the callback if the state hasn't changed
*
* @author Tim Roberts - Initial contribution
*/