X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fconfig%2Fconfig-manager%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fconfig%2Fmanager%2Fimpl%2Futil%2FOsgiRegistrationUtilTest.java;h=77d48f6ac5347bbf8c501a558c80be3d69807afe;hp=6f3ca2995f3bc6cf3a08ef7da292f0c187019fd9;hb=405c97ddf445b6057a2654545dd8072d28eedcce;hpb=2294805f83434db1d248e629767da6a563ce595f diff --git a/opendaylight/config/config-manager/src/test/java/org/opendaylight/controller/config/manager/impl/util/OsgiRegistrationUtilTest.java b/opendaylight/config/config-manager/src/test/java/org/opendaylight/controller/config/manager/impl/util/OsgiRegistrationUtilTest.java index 6f3ca2995f..77d48f6ac5 100644 --- a/opendaylight/config/config-manager/src/test/java/org/opendaylight/controller/config/manager/impl/util/OsgiRegistrationUtilTest.java +++ b/opendaylight/config/config-manager/src/test/java/org/opendaylight/controller/config/manager/impl/util/OsgiRegistrationUtilTest.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2013, 2015 Cisco Systems, Inc. and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.controller.config.manager.impl.util; import static org.mockito.Mockito.doNothing; @@ -48,7 +56,7 @@ public class OsgiRegistrationUtilTest { verify(sTracker).close(); } - private ServiceRegistration mockServiceRegistration() { + private static ServiceRegistration mockServiceRegistration() { ServiceRegistration mock = mock(ServiceRegistration.class); doNothing().when(mock).unregister(); return mock;