Bug 4412: New yang parser effective statements cleanup
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / ReferenceEffectiveStatementImpl.java
index 5e1708c1925c8ade94200d0e023fe31990907cb3..3a821ae7ff5fcb080b81799fa69c7f88ac8c8272 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.ReferenceStatement;
+import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
 
-public class ReferenceEffectiveStatementImpl extends EffectiveStatementBase<String, ReferenceStatement>  {
-
-    public ReferenceEffectiveStatementImpl(
-            StmtContext<String, ReferenceStatement, ?> ctx) {
+public final class ReferenceEffectiveStatementImpl extends EffectiveStatementBase<String, ReferenceStatement>  {
+    public ReferenceEffectiveStatementImpl(final StmtContext<String, ReferenceStatement, ?> ctx) {
         super(ctx);
     }
-
 }