X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=yang%2Fyang-model-ri%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fyang%2Fmodel%2Fri%2Fstmt%2Fimpl%2Fref%2FRefContainerStatement.java;fp=yang%2Fyang-model-ri%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fyang%2Fmodel%2Fri%2Fstmt%2Fimpl%2Fref%2FRefContainerStatement.java;h=0000000000000000000000000000000000000000;hb=b67b827e357ae40ae26e4bfec35b76ef5ee67967;hp=90cb21279951fa709803bf1d16dbffce9d70c424;hpb=9728fe497bcb7349f7e6ef9d3d984202d7ac07e7;p=yangtools.git diff --git a/yang/yang-model-ri/src/main/java/org/opendaylight/yangtools/yang/model/ri/stmt/impl/ref/RefContainerStatement.java b/yang/yang-model-ri/src/main/java/org/opendaylight/yangtools/yang/model/ri/stmt/impl/ref/RefContainerStatement.java deleted file mode 100644 index 90cb212799..0000000000 --- a/yang/yang-model-ri/src/main/java/org/opendaylight/yangtools/yang/model/ri/stmt/impl/ref/RefContainerStatement.java +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Copyright (c) 2021 PANTHEON.tech, 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.model.ri.stmt.impl.ref; - -import org.opendaylight.yangtools.yang.common.QName; -import org.opendaylight.yangtools.yang.model.api.meta.DeclarationReference; -import org.opendaylight.yangtools.yang.model.api.stmt.ContainerStatement; -import org.opendaylight.yangtools.yang.model.spi.meta.AbstractRefStatement; - -public final class RefContainerStatement extends AbstractRefStatement - implements ContainerStatement { - public RefContainerStatement(final ContainerStatement delegate, final DeclarationReference ref) { - super(delegate, ref); - } -}