Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[neato] Remove org.apache.common #14415

Merged
merged 2 commits into from
Feb 19, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Remove org.apache.common
Signed-off-by: lsiepel <[email protected]>
lsiepel committed Feb 17, 2023

Verified

This commit was signed with the committer’s verified signature.
commit e1eb49634442a0bc9c18da2bb947ffb02ad0f9bf
Original file line number Diff line number Diff line change
@@ -17,7 +17,6 @@
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;

import org.apache.commons.lang3.ObjectUtils;
import org.eclipse.jdt.annotation.NonNull;
import org.openhab.binding.neato.internal.CouldNotFindRobotException;
import org.openhab.binding.neato.internal.NeatoBindingConstants;
@@ -146,7 +145,9 @@ private void publishChannels() {
updateProperty(Thing.PROPERTY_MODEL_ID, neatoState.getMeta().getModelName());

updateState(CHANNEL_STATE, new StringType(neatoState.getRobotState().name()));
updateState(CHANNEL_ERROR, new StringType((String) ObjectUtils.defaultIfNull(neatoState.getError(), "")));

String error = neatoState.getError() != null ? (String) neatoState.getError() : "";
lsiepel marked this conversation as resolved.
Show resolved Hide resolved
updateState(CHANNEL_ERROR, new StringType(error));
updateState(CHANNEL_ACTION, new StringType(neatoState.getRobotAction().name()));

Details details = neatoState.getDetails();