Cleanup effectiveStatements() access
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / PresenceEffectiveStatementImpl.java
index 0fce3312ab71f58e6b385dbd3e5e93d4b8fa1424..acdf71eec28ee2ac282255b5ef6b5e797ed6f7b4 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
@@ -7,15 +7,11 @@
  */
 package org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective;
 
-import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
-
 import org.opendaylight.yangtools.yang.model.api.stmt.PresenceStatement;
+import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
 
-public class PresenceEffectiveStatementImpl extends EffectiveStatementBase<String, PresenceStatement>  {
-
-    public PresenceEffectiveStatementImpl(
-            StmtContext<String, PresenceStatement, ?> ctx) {
+public final class PresenceEffectiveStatementImpl extends DeclaredEffectiveStatementBase<String, PresenceStatement> {
+    public PresenceEffectiveStatementImpl(final StmtContext<String, PresenceStatement, ?> ctx) {
         super(ctx);
     }
-
 }