From: Robert Varga Date: Thu, 12 May 2022 15:31:47 +0000 (+0200) Subject: Fix checkstyle X-Git-Tag: v4.0.0~76 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=netconf.git;a=commitdiff_plain;h=23d2959c90db93232e65f79e93f33fc081cb8c03 Fix checkstyle There are a few violations, fix them up. Change-Id: I2c6b766692725975e216c714f7d46b2e833cf80e Signed-off-by: Robert Varga (cherry picked from commit 2ae7e8a14d82519cc500aea570e3bc8f496944b7) --- diff --git a/netconf/netconf-notifications-api/src/main/java/org/opendaylight/netconf/notifications/NetconfNotificationCollector.java b/netconf/netconf-notifications-api/src/main/java/org/opendaylight/netconf/notifications/NetconfNotificationCollector.java index 27bbdfd179..8805096451 100644 --- a/netconf/netconf-notifications-api/src/main/java/org/opendaylight/netconf/notifications/NetconfNotificationCollector.java +++ b/netconf/netconf-notifications-api/src/main/java/org/opendaylight/netconf/notifications/NetconfNotificationCollector.java @@ -49,7 +49,7 @@ public interface NetconfNotificationCollector { /** * Simple listener that receives notifications about changes in stream availability. */ - public interface NetconfNotificationStreamListener { + interface NetconfNotificationStreamListener { /** * Stream becomes available in the collector (first publisher is registered). @@ -61,5 +61,4 @@ public interface NetconfNotificationCollector { */ void onStreamUnregistered(StreamNameType stream); } - }