mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 12:18:50 +02:00
Fix logger name and move logger to %APPDATA%
This commit is contained in:
@@ -2,9 +2,12 @@
|
||||
|
||||
namespace Wox.Infrastructure
|
||||
{
|
||||
static class SyntaxSuger<T>
|
||||
static class Helper
|
||||
{
|
||||
public static T RequireNonNull(T obj)
|
||||
/// <summary>
|
||||
/// http://www.yinwang.org/blog-cn/2015/11/21/programming-philosophy
|
||||
/// </summary>
|
||||
public static T RequireNonNull<T>(this T obj)
|
||||
{
|
||||
if (obj == null)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user