Bug 4656: Yang parser does not determine configuration true or false properly
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / PrefixEffectiveStatementImpl.java
index 67f29fb0e962ef3e8590c8ebc4bba73a9cb7eaec..1d80bb72d434462fa3e38e33611941ea8b753f6a 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
@@ -8,14 +8,10 @@
 package org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective;
 
 import org.opendaylight.yangtools.yang.model.api.stmt.PrefixStatement;
-
 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
 
-public class PrefixEffectiveStatementImpl extends EffectiveStatementBase<String, PrefixStatement>  {
-
-    public PrefixEffectiveStatementImpl(
-            StmtContext<String, PrefixStatement, ?> ctx) {
+public final class PrefixEffectiveStatementImpl extends DeclaredEffectiveStatementBase<String, PrefixStatement>  {
+    public PrefixEffectiveStatementImpl(final StmtContext<String, PrefixStatement, ?> ctx) {
         super(ctx);
     }
-
 }