mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-23 22:19:13 +00:00
bug5596: made rounding methods accessible by overridong them in inner subclass
This commit is contained in:
+25
@@ -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);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user