Skip to content

Commit

Permalink
Remove org.apache.common (#14437)
Browse files Browse the repository at this point in the history
Signed-off-by: lsiepel <[email protected]>
  • Loading branch information
lsiepel authored Mar 10, 2023
1 parent 039e3aa commit 38915f5
Showing 1 changed file with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
*/
package org.openhab.binding.solaredge.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 @@ -101,10 +100,10 @@ public void setUsePrivateApi(boolean usePrivateApi) {

@Override
public String toString() {
return new ToStringBuilder(this).append("tokenOrApiKey", getTokenOrApiKey()).append("solarId", getSolarId())
.append("meterInstalled", isMeterInstalled()).append("usePrivateApi", isUsePrivateApi())
.append("live data pollingInterval", getLiveDataPollingInterval())
.append("aggregate data pollingInterval", getAggregateDataPollingInterval())
.append("asyncTimeout", getAsyncTimeout()).append("syncTimeout", getSyncTimeout()).toString();
return getClass().getSimpleName() + "{ tokenOrApiKey=" + getTokenOrApiKey() + ", solarId=" + getSolarId()
+ ", meterInstalled=" + isMeterInstalled() + ", usePrivateApi=" + isUsePrivateApi()
+ ", live data pollingInterval=" + getLiveDataPollingInterval() + ", aggregate data pollingInterval="
+ getAggregateDataPollingInterval() + ", asyncTimeout=" + getAsyncTimeout() + ", syncTimeout="
+ getSyncTimeout() + "}";
}
}

0 comments on commit 38915f5

Please sign in to comment.