Skip to content

Commit

Permalink
Clean Codes
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeDong32 authored Feb 9, 2023
2 parents 4194a23 + 7a1fa92 commit c803d64
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public string DecryptStr(string input, int[] cryptBase)
{
throw new ArgumentNullException("DecryptStr: input is null or empty");
}
CryptBase = cryptBase;
CryptBase = cryptBase;
var decStr = "";
var baseStr = "";
//清理数组
Expand Down
2 changes: 1 addition & 1 deletion GoodPass/GoodPass/Views/ListDetailsDetailControl.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ private async void ListDetailsDetailControl_DeleteButton_Click(object sender, Ro
else
{
ListDetailsDetailControl_DeleteButton.IsEnabled = true;
}
}
}

/// <summary>
Expand Down
4 changes: 2 additions & 2 deletions GoodPass/GoodPass/Views/MainPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -175,10 +175,10 @@ private async void UnlockProcess()
XamlRoot = this.XamlRoot,
Style = App.Current.Resources["DefaultContentDialogStyle"] as Style,
Title = App.UIStrings.WarningDialogTitle,
Content = App.UIStrings.AgreementNotArgeeContent,
Content = App.UIStrings.AgreementNotArgeeContent,
};
_ = await warningDialog.ShowAsync();
return ;
return;
}
}
var passwordInput = Login_PasswordBox.Password;
Expand Down

0 comments on commit c803d64

Please sign in to comment.