Skip to content

Commit

Permalink
Refactoring code
Browse files Browse the repository at this point in the history
  • Loading branch information
Sharp0802 committed Jul 24, 2021
1 parent feb7f9e commit 73f160b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion KakaotalkAdConcealer/Common/Initializable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ public Initializable(Action<T> initializer)
}

public T Value { get; }
public Action<T> Initializer { get; }
private Action<T> Initializer { get; }
}
}
2 changes: 1 addition & 1 deletion KakaotalkAdConcealer/Gui/LanguageExtension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public static class LanguageExtension
{
private static CultureInfo[] Cache { get; set; }

public static CultureInfo[] GetAvailableCultures()
public static IEnumerable<CultureInfo> GetAvailableCultures()
{
return Cache ??= GetAvailableCulturesWithoutCache().ToArray();

Expand Down

0 comments on commit 73f160b

Please sign in to comment.