C#: Move ExitCode enum out of Extractor class.

This commit is contained in:
Michael Nebel
2022-02-23 14:37:34 +01:00
parent b0c62c8a10
commit d2c872079b
2 changed files with 10 additions and 10 deletions

View File

@@ -16,15 +16,15 @@ using System.Threading;
namespace Semmle.Extraction.CSharp
{
public enum ExitCode
{
Ok, // Everything worked perfectly
Errors, // Trap was generated but there were processing errors
Failed // Trap could not be generated
}
public static class Extractor
{
public enum ExitCode
{
Ok, // Everything worked perfectly
Errors, // Trap was generated but there were processing errors
Failed // Trap could not be generated
}
private class LogProgressMonitor : IProgressMonitor
{
private readonly ILogger logger;