Migrate to MoreObjects
[controller.git] / opendaylight / netconf / netconf-client / src / main / java / org / opendaylight / controller / netconf / client / conf / NetconfReconnectingClientConfiguration.java
index f618ea5ab9e309ab1e6795722705a55b3d7e61ee..1c0b6008d5314069b50f8c5638269c5c343e5235 100644 (file)
@@ -7,7 +7,7 @@
  */
 package org.opendaylight.controller.netconf.client.conf;
 
-import com.google.common.base.Objects;
+import com.google.common.base.MoreObjects.ToStringHelper;
 import com.google.common.base.Preconditions;
 import java.net.InetSocketAddress;
 import org.opendaylight.controller.netconf.client.NetconfClientSessionListener;
@@ -39,7 +39,7 @@ public final class NetconfReconnectingClientConfiguration extends NetconfClientC
     }
 
     @Override
-    protected Objects.ToStringHelper buildToStringHelper() {
+    protected ToStringHelper buildToStringHelper() {
         return super.buildToStringHelper().add("connectStrategyFactory", connectStrategyFactory);
     }
 }