BUG-865: remove CloneableChildrenMap 93/42893/1
authorRobert Varga <rovarga@cisco.com>
Mon, 1 Aug 2016 09:39:01 +0000 (11:39 +0200)
committerRobert Varga <rovarga@cisco.com>
Mon, 1 Aug 2016 09:39:01 +0000 (11:39 +0200)
This class has been deprecated and is not used anywhere. Remove
it.

Change-Id: I7d554de0b50e273a4468f247fdc73a10fdcb6e49
Signed-off-by: Robert Varga <rovarga@cisco.com>
yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/nodes/CloneableChildrenMap.java [deleted file]

diff --git a/yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/nodes/CloneableChildrenMap.java b/yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/nodes/CloneableChildrenMap.java
deleted file mode 100644 (file)
index 14dc036..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * Copyright (c) 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.yangtools.yang.data.impl.schema.nodes;
-
-import com.google.common.annotations.Beta;
-import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
-import org.opendaylight.yangtools.yang.data.api.schema.DataContainerChild;
-
-/**
- * Interface implemented by maps which allow efficient duplication. This interface IS NOT part of the
- * general API contract and is <strong>an internal implementation detail</strong>. It is subject to
- * change and/or removal at any time.
- *
- * @deprecated Deprecated during Beryllium release cycle, scheduled for removal.
- */
-@Beta
-@Deprecated
-public abstract class CloneableChildrenMap implements CloneableMap<PathArgument, DataContainerChild<? extends PathArgument, ?>> {
-    CloneableChildrenMap() {
-        // Hidden to prevent outside instantiation
-    }
-}