Remove AbstractSchemaEffectiveDocumentedNode 01/87501/1
authorRobert Varga <robert.varga@pantheon.tech>
Thu, 6 Feb 2020 17:45:04 +0000 (18:45 +0100)
committerRobert Varga <robert.varga@pantheon.tech>
Thu, 6 Feb 2020 17:45:19 +0000 (18:45 +0100)
This class is not used anywhere, remove it.

JIRA: YANGTOOLS-652
Change-Id: I5f9e5b80bf62083e35933b48e18fa415f5d35800
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
yang/yang-parser-rfc7950/src/main/java/org/opendaylight/yangtools/yang/parser/rfc7950/stmt/AbstractSchemaEffectiveDocumentedNode.java [deleted file]

diff --git a/yang/yang-parser-rfc7950/src/main/java/org/opendaylight/yangtools/yang/parser/rfc7950/stmt/AbstractSchemaEffectiveDocumentedNode.java b/yang/yang-parser-rfc7950/src/main/java/org/opendaylight/yangtools/yang/parser/rfc7950/stmt/AbstractSchemaEffectiveDocumentedNode.java
deleted file mode 100644 (file)
index e2cd55a..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * Copyright (c) 2018 Pantheon Technologies, s.r.o. 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.parser.rfc7950.stmt;
-
-import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement;
-import org.opendaylight.yangtools.yang.model.api.stmt.SchemaTreeAwareEffectiveStatement;
-import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
-
-/**
- * An {@link AbstractEffectiveDocumentedNode} which can optionally support {@link SchemaTreeAwareEffectiveStatement}.
- *
- * @param <A> Argument type ({@link Void} if statement does not have argument.)
- * @param <D> Class representing declared version of this statement.
- * @author Robert Varga
- * @deprecated Use {@link AbstractEffectiveDocumentedNode} instead.
- */
-@Deprecated(forRemoval = true)
-public abstract class AbstractSchemaEffectiveDocumentedNode<A, D extends DeclaredStatement<A>>
-        extends AbstractEffectiveDocumentedNode<A, D> {
-    protected AbstractSchemaEffectiveDocumentedNode(final StmtContext<A, D, ?> ctx) {
-        super(ctx);
-    }
-}