Use Objects.equals() in effective statements
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / ContactEffectiveStatementImpl.java
index 6a2ae09ec88131613937e02c91ed0ecc35236845..378d3faaf00666aaee16fca0c00924a27a35417c 100644 (file)
@@ -10,12 +10,8 @@ package org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective;
 import org.opendaylight.yangtools.yang.model.api.stmt.ContactStatement;
 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
 
-public class ContactEffectiveStatementImpl extends
-        EffectiveStatementBase<String, ContactStatement> {
-
-    public ContactEffectiveStatementImpl(
-            StmtContext<String, ContactStatement, ?> ctx) {
+public class ContactEffectiveStatementImpl extends EffectiveStatementBase<String, ContactStatement> {
+    public ContactEffectiveStatementImpl(final StmtContext<String, ContactStatement, ?> ctx) {
         super(ctx);
-
     }
 }