Remove explicit default super-constructor calls
[controller.git] / opendaylight / config / yang-jmx-generator-plugin / src / main / java / org / opendaylight / controller / config / yangjmxgenerator / plugin / ftl / model / Constructor.java
index 91c1cc396632dcfaf6468a9bd8810ad31c4760d8..915e8c57539237302de9448c66fea40745d31096 100644 (file)
@@ -13,7 +13,6 @@ public class Constructor {
     private final boolean isPublic;
 
     public Constructor(String typeName, String body, boolean isPublic) {
-        super();
         this.typeName = typeName;
         this.body = body;
         this.isPublic = isPublic;