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 / DescriptionEffectiveStatementImpl.java
index 1d640ac0421099a6d975995cb7817c5079776bec..f0c3592ff8a9427c012d50c8e5fd5588ecd0a6e8 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,16 +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.DescriptionStatement;
+import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
 
-public class DescriptionEffectiveStatementImpl extends
-        EffectiveStatementBase<String, DescriptionStatement> {
-
-    public DescriptionEffectiveStatementImpl(
-            StmtContext<String, DescriptionStatement, ?> ctx) {
+public final class DescriptionEffectiveStatementImpl extends EffectiveStatementBase<String, DescriptionStatement> {
+    public DescriptionEffectiveStatementImpl(final StmtContext<String, DescriptionStatement, ?> ctx) {
         super(ctx);
     }
-
 }