From 82f4296736857f6d135f147fe76b98e7b0b3a3de Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Fri, 31 Jan 2020 17:08:42 +0100 Subject: [PATCH] Remove unused statement implementations These classes have been rendered unused, remove them. JIRA: YANGTOOLS-1065 Change-Id: I17450e1b3cc594051f293479f9754df309e6144c Signed-off-by: Robert Varga (cherry picked from commit 662ea6ef8a88b94c86dc73da179dae635f1fa83c) --- ...RequireInstanceEffectiveStatementImpl.java | 21 ------------------- .../YangVersionEffectiveStatementImpl.java | 21 ------------------- 2 files changed, 42 deletions(-) delete mode 100644 yang/yang-parser-rfc7950/src/main/java/org/opendaylight/yangtools/yang/parser/rfc7950/stmt/require_instance/RequireInstanceEffectiveStatementImpl.java delete mode 100644 yang/yang-parser-rfc7950/src/main/java/org/opendaylight/yangtools/yang/parser/rfc7950/stmt/yang_version/YangVersionEffectiveStatementImpl.java diff --git a/yang/yang-parser-rfc7950/src/main/java/org/opendaylight/yangtools/yang/parser/rfc7950/stmt/require_instance/RequireInstanceEffectiveStatementImpl.java b/yang/yang-parser-rfc7950/src/main/java/org/opendaylight/yangtools/yang/parser/rfc7950/stmt/require_instance/RequireInstanceEffectiveStatementImpl.java deleted file mode 100644 index 0dd3aa2644..0000000000 --- a/yang/yang-parser-rfc7950/src/main/java/org/opendaylight/yangtools/yang/parser/rfc7950/stmt/require_instance/RequireInstanceEffectiveStatementImpl.java +++ /dev/null @@ -1,21 +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.parser.rfc7950.stmt.require_instance; - -import org.opendaylight.yangtools.yang.model.api.stmt.RequireInstanceEffectiveStatement; -import org.opendaylight.yangtools.yang.model.api.stmt.RequireInstanceStatement; -import org.opendaylight.yangtools.yang.parser.rfc7950.stmt.DeclaredEffectiveStatementBase; -import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext; - -final class RequireInstanceEffectiveStatementImpl - extends DeclaredEffectiveStatementBase - implements RequireInstanceEffectiveStatement { - RequireInstanceEffectiveStatementImpl(final StmtContext ctx) { - super(ctx); - } -} \ No newline at end of file diff --git a/yang/yang-parser-rfc7950/src/main/java/org/opendaylight/yangtools/yang/parser/rfc7950/stmt/yang_version/YangVersionEffectiveStatementImpl.java b/yang/yang-parser-rfc7950/src/main/java/org/opendaylight/yangtools/yang/parser/rfc7950/stmt/yang_version/YangVersionEffectiveStatementImpl.java deleted file mode 100644 index f513785f80..0000000000 --- a/yang/yang-parser-rfc7950/src/main/java/org/opendaylight/yangtools/yang/parser/rfc7950/stmt/yang_version/YangVersionEffectiveStatementImpl.java +++ /dev/null @@ -1,21 +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.parser.rfc7950.stmt.yang_version; - -import org.opendaylight.yangtools.yang.common.YangVersion; -import org.opendaylight.yangtools.yang.model.api.stmt.YangVersionEffectiveStatement; -import org.opendaylight.yangtools.yang.model.api.stmt.YangVersionStatement; -import org.opendaylight.yangtools.yang.parser.rfc7950.stmt.DeclaredEffectiveStatementBase; -import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext; - -final class YangVersionEffectiveStatementImpl extends DeclaredEffectiveStatementBase - implements YangVersionEffectiveStatement { - YangVersionEffectiveStatementImpl(final StmtContext ctx) { - super(ctx); - } -} \ No newline at end of file -- 2.36.6