Remove org.apache.common (#14437)

Signed-off-by: lsiepel <leosiepel@gmail.com>
This commit is contained in:
lsiepel 2023-03-10 23:39:18 +01:00 committed by GitHub
parent 039e3aa73a
commit 38915f5009
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 6 deletions

View File

@ -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;
@ -101,10 +100,10 @@ public class SolarEdgeConfiguration {
@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() + "}";
}
}