Update SchemaPath.getPath() implementation
[yangtools.git] / yang / yang-parser-rfc7950 / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / stmt / leaf / EmptyLeafEffectiveStatement.java
1 /*
2  * Copyright (c) 2020 PANTHEON.tech, s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.yang.parser.rfc7950.stmt.leaf;
9
10 import com.google.common.collect.ImmutableList;
11 import java.util.Optional;
12 import org.opendaylight.yangtools.yang.model.api.LeafSchemaNode;
13 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
14 import org.opendaylight.yangtools.yang.model.api.stmt.LeafStatement;
15
16 final class EmptyLeafEffectiveStatement extends AbstractLeafEffectiveStatement {
17     EmptyLeafEffectiveStatement(final LeafStatement declared, final Object path, final int flags,
18             final ImmutableList<? extends EffectiveStatement<?, ?>> substatements) {
19         super(declared, path, flags, substatements);
20     }
21
22     EmptyLeafEffectiveStatement(final EmptyLeafEffectiveStatement original, final Object path, final int flags) {
23         super(original, path, flags);
24     }
25
26     @Override
27     public Optional<LeafSchemaNode> getOriginal() {
28         return Optional.empty();
29     }
30 }