bug5596: made rounding methods accessible by overridong them in inner subclass

This commit is contained in:
Axel Uhl
2021-07-10 15:54:13 +02:00
parent 9976a8f84a
commit e607e266c5
@@ -38,6 +38,31 @@ public class TestVirtualWindFixTrackTimepointRounding {
TimePoint to) {
return null;
}
@Override
protected TimePoint higherToResolution(TimePoint t) {
return super.higherToResolution(t);
}
@Override
protected TimePoint lowerToResolution(TimePoint t) {
return super.lowerToResolution(t);
}
@Override
protected TimePoint ceilingToResolution(TimePoint t) {
return super.ceilingToResolution(t);
}
@Override
protected TimePoint floorToResolution(TimePoint t) {
return super.floorToResolution(t);
}
@Override
protected TimePoint higherToResolution(TimePoint t) {
return super.higherToResolution(t);
}
};
}