Prevent compiler warning when class isn't used

This commit is contained in:
Charles Milette 2017-10-04 12:29:11 -04:00
parent 63f526857d
commit 47170b90fe
No known key found for this signature in database
GPG key ID: 9BC74CC51CB137CE
2 changed files with 5 additions and 7 deletions

View file

@ -1,9 +1,4 @@
using ShareX.HelpersLib;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
#if WindowsStore
namespace ShareX.StartupManagers
{
class CentennialStartupManager : IStartupManager
@ -16,3 +11,4 @@ public StartupTaskState State
}
}
}
#endif

View file

@ -1,4 +1,5 @@
using ShareX.HelpersLib;
#if !WindowsStore
using ShareX.HelpersLib;
using System;
namespace ShareX.StartupManagers
@ -13,3 +14,4 @@ public StartupTaskState State
}
}
}
#endif