mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-22639 Revert now obsolete bug workarounds.
This reverts changes from commit47b9a517be
. This reverts changes from commit214ae60d94
.
This commit is contained in:
parent
c5160765d4
commit
7b690aa8c7
1 changed files with 4 additions and 6 deletions
|
@ -3695,16 +3695,14 @@ int32_t Calendar::handleGetExtendedYearFromWeekFields(int32_t yearWoy, int32_t w
|
|||
|
||||
int32_t Calendar::handleGetMonthLength(int32_t extendedYear, int32_t month) const
|
||||
{
|
||||
const int32_t nextMonthStart = handleComputeMonthStart(extendedYear, month+1, true);
|
||||
const int32_t thisMonthStart = handleComputeMonthStart(extendedYear, month, true);
|
||||
return nextMonthStart - thisMonthStart;
|
||||
return handleComputeMonthStart(extendedYear, month+1, true) -
|
||||
handleComputeMonthStart(extendedYear, month, true);
|
||||
}
|
||||
|
||||
int32_t Calendar::handleGetYearLength(int32_t eyear) const
|
||||
{
|
||||
const int32_t nextYearStart = handleComputeMonthStart(eyear + 1, 0, false);
|
||||
const int32_t thisYearStart = handleComputeMonthStart(eyear, 0, false);
|
||||
return nextYearStart - thisYearStart;
|
||||
return handleComputeMonthStart(eyear+1, 0, false) -
|
||||
handleComputeMonthStart(eyear, 0, false);
|
||||
}
|
||||
|
||||
int32_t
|
||||
|
|
Loading…
Add table
Reference in a new issue