Skip to content

Commit

Permalink
Remove tenary operator
Browse files Browse the repository at this point in the history
  • Loading branch information
G.Reijn authored and G.Reijn committed Dec 28, 2024
1 parent 503fe50 commit 18feb8e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ class TimeZone {
$this.Id = $timeZone.Id

# We set the SupportsDaylightSavingProperty to the value that is supported by the current time zone
[TimeZone]::SupportsDaylightSavingProperty = $timeZone.SupportsDaylightSavingTime ? $true : $false
[TimeZone]::SupportsDaylightSavingProperty = $timeZone.SupportsDaylightSavingTime
}

[TimeZone] Get() {
Expand Down

0 comments on commit 18feb8e

Please sign in to comment.