BUG-6522: share instances of Config(Effective)Statement
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / YinElementEffectiveStatementImpl.java
index 600b0c5998446451ce057ea59bdd3306e06ede28..255dd39302597f1c9937fa120ee6fb794da82b5c 100644 (file)
@@ -1,4 +1,4 @@
-/**
+/*
  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
@@ -10,12 +10,8 @@ package org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective;
 import org.opendaylight.yangtools.yang.model.api.stmt.YinElementStatement;
 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
 
-public class YinElementEffectiveStatementImpl extends
-        EffectiveStatementBase<Boolean, YinElementStatement> {
-
-    public YinElementEffectiveStatementImpl(
-            StmtContext<Boolean, YinElementStatement, ?> ctx) {
+public final class YinElementEffectiveStatementImpl extends DeclaredEffectiveStatementBase<Boolean, YinElementStatement> {
+    public YinElementEffectiveStatementImpl(final StmtContext<Boolean, YinElementStatement, ?> ctx) {
         super(ctx);
     }
-
 }