Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
LiorBanai committed Nov 6, 2020
1 parent b5f77b5 commit d67701e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Analogy.Updater/DownloadUpdateDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ private void DownloadUpdateDialogLoad(object sender, EventArgs e)

private void OnDownloadProgressChanged(object sender, DownloadProgressChangedEventArgs e)
{
if (_startedAt == default(DateTime))
if (_startedAt == default)
{
_startedAt = DateTime.Now;
}
Expand Down
4 changes: 2 additions & 2 deletions Analogy.Updater/UpdateForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ public UpdateForm()

public sealed override string Text
{
get { return base.Text; }
set { base.Text = value; }
get => base.Text;
set => base.Text = value;
}


Expand Down

0 comments on commit d67701e

Please sign in to comment.