Bug 4662: Introduce a SemanticVersion concept - import processing
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / KeyEffectiveStatementImpl.java
index 4d61814de7ddbe2a94d60a1304cec493f8bff089..1bce773f7bddb381e7db5bb93f7fe8da2ffe8522 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,17 +8,13 @@
 package org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective;
 
 import java.util.Collection;
-import org.opendaylight.yangtools.yang.model.api.stmt.SchemaNodeIdentifier;
-
 import org.opendaylight.yangtools.yang.model.api.stmt.KeyStatement;
+import org.opendaylight.yangtools.yang.model.api.stmt.SchemaNodeIdentifier;
 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
 
-public class KeyEffectiveStatementImpl extends
-        EffectiveStatementBase<Collection<SchemaNodeIdentifier>, KeyStatement> {
-
-    public KeyEffectiveStatementImpl(
-            StmtContext<Collection<SchemaNodeIdentifier>, KeyStatement, ?> ctx) {
+public final class KeyEffectiveStatementImpl extends DeclaredEffectiveStatementBase<Collection<SchemaNodeIdentifier>,
+        KeyStatement> {
+    public KeyEffectiveStatementImpl(final StmtContext<Collection<SchemaNodeIdentifier>, KeyStatement, ?> ctx) {
         super(ctx);
     }
-
 }