Skip to content

Commit

Permalink
dependabot groups
Browse files Browse the repository at this point in the history
  • Loading branch information
na1307 committed Feb 20, 2024
1 parent 072c116 commit 8cab088
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,7 @@ updates:
separator: _
reviewers:
- "na1307"
groups:
default:
patterns:
- "*"
2 changes: 1 addition & 1 deletion EncodingConverter/Dialogs/ChooseEncodingDialog.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ namespace EncodingConverter;
/// ChooseEncodingDialog.xaml에 대한 상호 작용 논리
/// </summary>
public partial class ChooseEncodingDialog {
//private const int utf8CodePage = 65001;
private static readonly string[] encodings = ["System Encoding", "UTF-8 with BOM", "UTF-8 without BOM"];
private static readonly UTF8Encoding utf8withBom = new(encoderShouldEmitUTF8Identifier: true);
private static readonly UTF8Encoding utf8withoutBom = new(encoderShouldEmitUTF8Identifier: false);
//private const int utf8CodePage = 65001;

public ChooseEncodingDialog() {
InitializeComponent();
Expand Down
Binary file removed EncodingConverter/Resources/Icon.png
Binary file not shown.

0 comments on commit 8cab088

Please sign in to comment.