Skip to content

Commit 50683ce

Browse files
committed
split out LaunchResult
1 parent 94aabd9 commit 50683ce

2 files changed

Lines changed: 11 additions & 8 deletions

File tree

src/DiffEngine/DiffRunner.cs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -118,14 +118,6 @@ static LaunchResult Launch(ResolvedDiffTool diffTool, string tempFile, string ta
118118
throw new Exception(message, exception);
119119
}
120120
}
121-
}
122121

123-
public enum LaunchResult
124-
{
125-
NoEmptyFileForExtension,
126-
AlreadyRunningAndSupportsRefresh,
127-
StartedNewInstance,
128-
TooManyRunningDiffTools,
129-
NoDiffToolForExtension
130122
}
131123
}

src/DiffEngine/LaunchResult.cs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
namespace DiffEngine
2+
{
3+
public enum LaunchResult
4+
{
5+
NoEmptyFileForExtension,
6+
AlreadyRunningAndSupportsRefresh,
7+
StartedNewInstance,
8+
TooManyRunningDiffTools,
9+
NoDiffToolForExtension
10+
}
11+
}

0 commit comments

Comments
 (0)