minor clean-up after previous change 08/77408/1
authorMichael Vorburger <vorburger@redhat.com>
Thu, 1 Nov 2018 12:59:40 +0000 (13:59 +0100)
committerMichael Vorburger <vorburger@redhat.com>
Thu, 1 Nov 2018 12:59:40 +0000 (13:59 +0100)
Change-Id: I524dd9b77722a9ffdef0551e85f2fdaa18b17f7b
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
features/production/odl-neutron-northbound-api/pom.xml
northbound-api/src/main/java/org/opendaylight/neutron/northbound/impl/PortStatusUpdateInitializer.java

index 08944b9180cbed4341be964fa9f6655fdc68c430..1ccfea26ee2d681ad156c577f5065c135dca74cc 100644 (file)
             <type>xml</type>
             <classifier>features</classifier>
         </dependency>
-        <dependency>
-            <groupId>org.opendaylight.infrautils</groupId>
-            <artifactId>odl-infrautils-inject</artifactId>
-            <type>xml</type>
-            <classifier>features</classifier>
-        </dependency>
         <dependency>
             <groupId>org.opendaylight.aaa</groupId>
             <artifactId>odl-aaa-shiro</artifactId>
index 271477f57f9f207043da3a70b97760dcf5ff9ee8..597f1bae152545ee81b0172bb17f5cff761b7bbf 100644 (file)
@@ -58,7 +58,7 @@ public class PortStatusUpdateInitializer {
         try {
             Optional<String> res = jsonRestconfService.invokeRpc(
                     "sal-remote:create-data-change-event-subscription", Optional.of(SUBSCRIBE_JSON));
-            LOG.info("create-data-change-event-subscription returned {}", res.toString());
+            LOG.info("create-data-change-event-subscription returned {}", res);
         } catch (OperationFailedException e) {
             LOG.error("exception while calling create-data-change-event-subscription", e);
         }
@@ -72,7 +72,7 @@ public class PortStatusUpdateInitializer {
         Optional<String> res = null;
         try {
             res = jsonRestconfService.subscribeToStream(identifier, map);
-            LOG.info("subscribeToStream returned {}", res.toString());
+            LOG.info("subscribeToStream returned {}", res);
         } catch (OperationFailedException e) {
             LOG.error("exception while calling subscribeToStream", e);
         }