From 87f7c19f90d12173d91f2283e659b2cf56a61cc9 Mon Sep 17 00:00:00 2001 From: Bryce Roethel Date: Fri, 3 Nov 2023 18:34:14 -0400 Subject: [PATCH] [wpimath] Make InterpolatingDoubleTreeMap constructor public (#5865) --- .../first/math/interpolation/InterpolatingDoubleTreeMap.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wpimath/src/main/java/edu/wpi/first/math/interpolation/InterpolatingDoubleTreeMap.java b/wpimath/src/main/java/edu/wpi/first/math/interpolation/InterpolatingDoubleTreeMap.java index 046de473b3..bcd57a392e 100644 --- a/wpimath/src/main/java/edu/wpi/first/math/interpolation/InterpolatingDoubleTreeMap.java +++ b/wpimath/src/main/java/edu/wpi/first/math/interpolation/InterpolatingDoubleTreeMap.java @@ -9,7 +9,7 @@ package edu.wpi.first.math.interpolation; * from points that are defined. This uses linear interpolation. */ public class InterpolatingDoubleTreeMap extends InterpolatingTreeMap { - InterpolatingDoubleTreeMap() { + public InterpolatingDoubleTreeMap() { super(InverseInterpolator.forDouble(), Interpolator.forDouble()); } }