Bug 4610 - Do not create duplicate declared statements
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / ConfigEffectiveStatementImpl.java
index 57f78017b64a12308fd5c097825309f392347214..2667dd5fe2295f02de064bb82a89bedda6521783 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.ConfigStatement;
 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
 
-public class ConfigEffectiveStatementImpl extends
-        EffectiveStatementBase<Boolean, ConfigStatement> {
-
-    public ConfigEffectiveStatementImpl(
-            StmtContext<Boolean, ConfigStatement, ?> ctx) {
+public final class ConfigEffectiveStatementImpl extends DeclaredEffectiveStatementBase<Boolean, ConfigStatement> {
+    public ConfigEffectiveStatementImpl(final StmtContext<Boolean, ConfigStatement, ?> ctx) {
         super(ctx);
-
     }
 }