Remove deprecated MD-SAL APIs
[controller.git] / opendaylight / md-sal / sal-binding-broker / src / test / java / org / opendaylight / controller / md / sal / binding / test / AbstractConcurrentDataBrokerTest.java
diff --git a/opendaylight/md-sal/sal-binding-broker/src/test/java/org/opendaylight/controller/md/sal/binding/test/AbstractConcurrentDataBrokerTest.java b/opendaylight/md-sal/sal-binding-broker/src/test/java/org/opendaylight/controller/md/sal/binding/test/AbstractConcurrentDataBrokerTest.java
deleted file mode 100644 (file)
index 9fedfbb..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Copyright (c) 2017 Red Hat, 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.md.sal.binding.test;
-
-/**
- * AbstractConcurrentDataBrokerTest.
- *
- * <p>Uses single thread executor for the Serialized DOM DataBroker (instead of the
- * direct executor used by the {@literal @}Deprecated AbstractDataBrokerTest) in order
- * to allow tests to use the DataBroker concurrently from several threads.
- *
- * <p>See also <a href="https://bugs.opendaylight.org/show_bug.cgi?id=7538">bug 7538</a> for more details.
- *
- * @author Michael Vorburger
- */
-@Deprecated
-public abstract class AbstractConcurrentDataBrokerTest extends AbstractBaseDataBrokerTest {
-    private final boolean useMTDataTreeChangeListenerExecutor;
-
-    protected AbstractConcurrentDataBrokerTest() {
-        this(false);
-    }
-
-    protected AbstractConcurrentDataBrokerTest(final boolean useMTDataTreeChangeListenerExecutor) {
-        this.useMTDataTreeChangeListenerExecutor = useMTDataTreeChangeListenerExecutor;
-    }
-
-    @Override
-    protected AbstractDataBrokerTestCustomizer createDataBrokerTestCustomizer() {
-        return new ConcurrentDataBrokerTestCustomizer(useMTDataTreeChangeListenerExecutor);
-    }
-
-}