Remove ?else macro

This commit is contained in:
Jesse Gumm 2024-09-05 08:36:05 -05:00
parent 2072b49220
commit 9d0fb6d895

View file

@ -162,7 +162,6 @@
-define(DETERMINE_TZ, determine_timezone()). -define(DETERMINE_TZ, determine_timezone()).
-define(DEFAULT_DISAMBIG, prefer_standard). -define(DEFAULT_DISAMBIG, prefer_standard).
-define(else, true).
start() -> start() ->
@ -1088,7 +1087,7 @@ date_tz_to_tz_both(Date, FromTZ, ToTZ) ->
if if
Standard=:=Daylight -> Standard=:=Daylight ->
Standard; Standard;
?else -> true ->
{ambiguous, Standard, Daylight} {ambiguous, Standard, Daylight}
end. end.