mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-10 15:11:59 +01:00
[pentair] Remove org.apache.common (#14421)
Signed-off-by: lsiepel <leosiepel@gmail.com>
This commit is contained in:
parent
fa87a1b2f4
commit
e776680dc2
@ -12,8 +12,6 @@
|
||||
*/
|
||||
package org.openhab.binding.pentair.internal.config;
|
||||
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
|
||||
/**
|
||||
* Configuration parameters for IP Bridge
|
||||
*
|
||||
@ -31,6 +29,6 @@ public class PentairIPBridgeConfig {
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this).append("address", address).append("port", port).append("id", id).toString();
|
||||
return getClass().getSimpleName() + "{ address=" + address + ", port=" + port + ", id=" + id + "}";
|
||||
}
|
||||
}
|
||||
|
@ -12,8 +12,6 @@
|
||||
*/
|
||||
package org.openhab.binding.pentair.internal.config;
|
||||
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
|
||||
/**
|
||||
* Configuration parameters for Serial Bridge
|
||||
*
|
||||
@ -28,6 +26,6 @@ public class PentairSerialBridgeConfig {
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this).append("serialPort", serialPort).append("id", id).toString();
|
||||
return getClass().getSimpleName() + "{ serialPort=" + serialPort + ", id=" + id + "}";
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user