[wpimath] Make InterpolatingDoubleTreeMap constructor public (#5865)

This commit is contained in:
Bryce Roethel
2023-11-03 18:34:14 -04:00
committed by GitHub
parent 6b53ef47cf
commit 87f7c19f90

View File

@@ -9,7 +9,7 @@ package edu.wpi.first.math.interpolation;
* from points that are defined. This uses linear interpolation.
*/
public class InterpolatingDoubleTreeMap extends InterpolatingTreeMap<Double, Double> {
InterpolatingDoubleTreeMap() {
public InterpolatingDoubleTreeMap() {
super(InverseInterpolator.forDouble(), Interpolator.forDouble());
}
}