Removed unused argument to TriStateBufferConverter's constructor
[Mograsim.git] / plugins / net.mograsim.logic.model.verilog / src / net / mograsim / logic / model / verilog / converter / components / TriStateBufferConverter.java
index deefaf0..3d3a978 100644 (file)
@@ -37,13 +37,6 @@ public class TriStateBufferConverter implements ComponentConverter<ModelTriState
        private static final VerilogComponentDeclaration TSBW_CONDITIONAL = new VerilogComponentDeclaration("tsbw_conditional",
                        List.of(new Input("cond", 2), new Input("onTrue", 2), new Input("onFalse", 2), new Output("res", 2)));
 
-       private final ModelComponentToVerilogConverter converter;
-
-       public TriStateBufferConverter(ModelComponentToVerilogConverter converter)
-       {
-               this.converter = converter;
-       }
-
        @Override
        public ComponentConversionResult convert(ModelTriStateBuffer modelComponent, String modelID, JsonElement params, String verilogID)
        {