Skip to content

Commit

Permalink
[pentair] Remove org.apache.common (#14421)
Browse files Browse the repository at this point in the history
Signed-off-by: lsiepel <[email protected]>
  • Loading branch information
lsiepel authored Feb 19, 2023
1 parent fa87a1b commit e776680
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
*/
package org.openhab.binding.pentair.internal.config;

import org.apache.commons.lang3.builder.ToStringBuilder;

/**
* Configuration parameters for IP Bridge
*
Expand All @@ -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 + "}";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
*/
package org.openhab.binding.pentair.internal.config;

import org.apache.commons.lang3.builder.ToStringBuilder;

/**
* Configuration parameters for Serial Bridge
*
Expand All @@ -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 + "}";
}
}

0 comments on commit e776680

Please sign in to comment.