From: Robert Varga Date: Wed, 1 Jul 2020 14:44:12 +0000 (+0200) Subject: Remove MaxElementsEffectiveStatementImpl X-Git-Tag: v5.0.4~55 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=17be3bd101a7d408c967e3b3dc74540b92c81bbf;p=yangtools.git Remove MaxElementsEffectiveStatementImpl This is a follow-up patch removing an unused class. JIRA: YANGTOOLS-1065 Change-Id: I9d8761139db206d917067971a2e840f2df7319ef Signed-off-by: Robert Varga --- diff --git a/yang/yang-parser-rfc7950/src/main/java/org/opendaylight/yangtools/yang/parser/rfc7950/stmt/max_elements/MaxElementsEffectiveStatementImpl.java b/yang/yang-parser-rfc7950/src/main/java/org/opendaylight/yangtools/yang/parser/rfc7950/stmt/max_elements/MaxElementsEffectiveStatementImpl.java deleted file mode 100644 index 00a5f53576..0000000000 --- a/yang/yang-parser-rfc7950/src/main/java/org/opendaylight/yangtools/yang/parser/rfc7950/stmt/max_elements/MaxElementsEffectiveStatementImpl.java +++ /dev/null @@ -1,20 +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.max_elements; - -import org.opendaylight.yangtools.yang.model.api.stmt.MaxElementsEffectiveStatement; -import org.opendaylight.yangtools.yang.model.api.stmt.MaxElementsStatement; -import org.opendaylight.yangtools.yang.parser.rfc7950.stmt.DeclaredEffectiveStatementBase; -import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext; - -final class MaxElementsEffectiveStatementImpl extends DeclaredEffectiveStatementBase - implements MaxElementsEffectiveStatement { - MaxElementsEffectiveStatementImpl(final StmtContext ctx) { - super(ctx); - } -} \ No newline at end of file