Skip to content

Commit

Permalink
[nibeuplink] Remove org.apache.common (openhab#14416)
Browse files Browse the repository at this point in the history
Signed-off-by: lsiepel <[email protected]>
  • Loading branch information
lsiepel authored and nemerdaud committed Feb 28, 2023
1 parent 3d29aee commit 92fc513
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
*/
package org.openhab.binding.nibeuplink.internal.config;

import org.apache.commons.lang3.builder.ToStringBuilder;
import org.eclipse.jdt.annotation.NonNullByDefault;
import org.eclipse.jdt.annotation.Nullable;

Expand Down Expand Up @@ -91,9 +90,9 @@ public void setHouseKeepingInterval(Integer houseKeepingInterval) {

@Override
public String toString() {
return new ToStringBuilder(this).append("user", getUser()).append("password", getPassword())
.append("nibeId", getNibeId()).append("pollingInterval", getPollingInterval())
.append("houseKeepingInterval", getHouseKeepingInterval()).append("asyncTimeout", getAsyncTimeout())
.append("syncTimeout", getSyncTimeout()).toString();
return getClass().getSimpleName() + "{ user=" + getUser() + ", password=" + getPassword() + ", nibeId="
+ getNibeId() + ", pollingInterval=" + getPollingInterval() + ", houseKeepingInterval="
+ getHouseKeepingInterval() + ", asyncTimeout=" + getAsyncTimeout() + ", syncTimeout="
+ getSyncTimeout() + "}";
}
}

0 comments on commit 92fc513

Please sign in to comment.