Skip to content

Commit

Permalink
Made the constructor public. Duh. (#322)
Browse files Browse the repository at this point in the history
  • Loading branch information
climategadgets committed Jun 22, 2024
1 parent fee4f3e commit 65a7fe1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class HalfLifeController<P> extends AbstractProcessController<Double, Do
* @param jmxName This controller's JMX name.
* @param halfLife Duration required for the output value to halve with no additional input changes.
*/
protected HalfLifeController(String jmxName, Duration halfLife) {
public HalfLifeController(String jmxName, Duration halfLife) {
super(jmxName, 0.0);

setHalfLife(halfLife);
Expand Down

0 comments on commit 65a7fe1

Please sign in to comment.