Remove RpcAsContainer 80/80580/3
authorRobert Varga <robert.varga@pantheon.tech>
Mon, 25 Feb 2019 13:35:45 +0000 (14:35 +0100)
committerRobert Varga <robert.varga@pantheon.tech>
Mon, 25 Feb 2019 14:08:23 +0000 (15:08 +0100)
This class is superseded by generalized OperationAsContainer, remove
it in this major release.

Change-Id: Icda0272fca7871e53134ef96cafbf185b148bf82
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
yang/yang-data-util/src/main/java/org/opendaylight/yangtools/yang/data/util/RpcAsContainer.java [deleted file]

diff --git a/yang/yang-data-util/src/main/java/org/opendaylight/yangtools/yang/data/util/RpcAsContainer.java b/yang/yang-data-util/src/main/java/org/opendaylight/yangtools/yang/data/util/RpcAsContainer.java
deleted file mode 100644 (file)
index 1078cf4..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
- * Copyright (c) 2016 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.util;
-
-import org.opendaylight.yangtools.yang.model.api.RpcDefinition;
-
-// FIXME: 3.0.0: Rename this to "OperationAsContainer"
-@Deprecated
-public final class RpcAsContainer extends OperationAsContainer {
-    public RpcAsContainer(final RpcDefinition delegate) {
-        super(delegate);
-    }
-}