From 96af87ac6c8e3377e51645ed4bc273e24be00e1f Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Fri, 7 Nov 2014 18:11:55 +0100 Subject: [PATCH] Remove unused local variable It does not use generic arguments, it's unused, and has overall no impact (aside from eclipse warnings). Change-Id: Ica1959e50f6e60a9431893e2ebee31a5595fc6db Signed-off-by: Robert Varga --- .../netconf/impl/NetconfMonitoringServiceImplTest.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/opendaylight/netconf/netconf-impl/src/test/java/org/opendaylight/controller/netconf/impl/NetconfMonitoringServiceImplTest.java b/opendaylight/netconf/netconf-impl/src/test/java/org/opendaylight/controller/netconf/impl/NetconfMonitoringServiceImplTest.java index 5743da07a6..a188550d40 100644 --- a/opendaylight/netconf/netconf-impl/src/test/java/org/opendaylight/controller/netconf/impl/NetconfMonitoringServiceImplTest.java +++ b/opendaylight/netconf/netconf-impl/src/test/java/org/opendaylight/controller/netconf/impl/NetconfMonitoringServiceImplTest.java @@ -12,7 +12,6 @@ import com.google.common.base.Optional; import com.google.common.collect.Lists; import com.google.common.collect.Sets; import io.netty.channel.Channel; -import java.util.List; import java.util.Set; import org.junit.Before; import org.junit.Test; @@ -56,7 +55,6 @@ public class NetconfMonitoringServiceImplTest { public void testSessions() throws Exception { doReturn("sessToStr").when(managementSession).toString(); service.onSessionUp(managementSession); - List list = Lists.newArrayList(managementSession); } @Test(expected = RuntimeException.class) -- 2.36.6