BUG-6497: Do not lose augmentation statement order
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / ValueEffectiveStatementImpl.java
index d21d6fabe81c5b604bf38e3eedfefb840e67dce0..d08a4c4b0b7b4c18583f552c037a41d972b52a05 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,13 +10,8 @@ package org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective;
 import org.opendaylight.yangtools.yang.model.api.stmt.ValueStatement;
 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
 
-public class ValueEffectiveStatementImpl extends
-        EffectiveStatementBase<String, ValueStatement> {
-
-    public ValueEffectiveStatementImpl(
-            StmtContext<String, ValueStatement, ?> ctx) {
+public final class ValueEffectiveStatementImpl extends DeclaredEffectiveStatementBase<Integer, ValueStatement> {
+    public ValueEffectiveStatementImpl(final StmtContext<Integer, ValueStatement, ?> ctx) {
         super(ctx);
-
     }
-
 }
\ No newline at end of file