Next round of yang-parser-impl checkstyle fixes
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / RpcEffectiveStatementImpl.java
index 129609941913741dea701376298781a9385fa337..c201777d58c6446e2c3122b6dc004e702dbb5c76 100644 (file)
@@ -27,7 +27,8 @@ public class RpcEffectiveStatementImpl extends AbstractEffectiveSchemaNode<RpcSt
     private final Set<TypeDefinition<?>> typeDefinitions;
     private final Set<GroupingDefinition> groupings;
 
-    public RpcEffectiveStatementImpl(final StmtContext<QName, RpcStatement, EffectiveStatement<QName, RpcStatement>> ctx) {
+    public RpcEffectiveStatementImpl(final StmtContext<QName, RpcStatement,
+            EffectiveStatement<QName, RpcStatement>> ctx) {
         super(ctx);
         this.input = firstEffective(InputEffectiveStatementImpl.class);
         this.output = firstEffective(OutputEffectiveStatementImpl.class);
@@ -100,15 +101,11 @@ public class RpcEffectiveStatementImpl extends AbstractEffectiveSchemaNode<RpcSt
 
     @Override
     public String toString() {
-        return RpcEffectiveStatementImpl.class.getSimpleName() + "[" +
-                "qname=" +
-                getQName() +
-                ", path=" +
-                getPath() +
-                ", input=" +
-                input +
-                ", output=" +
-                output +
-                "]";
+        return RpcEffectiveStatementImpl.class.getSimpleName() + "["
+                + "qname=" + getQName()
+                + ", path=" +  getPath()
+                + ", input=" + input
+                + ", output=" + output
+                + "]";
     }
 }