Remove explicit default super-constructor calls
[mdsal.git] / binding2 / prototype / yang-binding2 / src / test / java / org / opendaylight / yangtools / yang / binding / test / mock / NodeKey.java
index 3c27909678e1ba2a85be235b84e5a30e0e12b591..1914d5d62b287b07e6df182908387bbefa0de8cb 100644 (file)
@@ -15,7 +15,6 @@ public class NodeKey implements //
     private final int id;
 
     public NodeKey(int id) {
-        super();
         this.id = id;
     }