Skip to content

Commit 1d0845e

Browse files
committed
Update DiffRunner.cs
1 parent aa5a35a commit 1d0845e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/DiffEngine/DiffRunner.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ static LaunchResult InnerLaunch(TryResolveTool tryResolveTool, string tempFile,
110110
return LaunchResult.AlreadyRunningAndSupportsRefresh;
111111
}
112112

113-
KillIfMdi(tool, command);
113+
KillIfNotMdi(tool, command);
114114
}
115115

116116
if (MaxInstance.Reached())
@@ -145,7 +145,7 @@ static async Task<LaunchResult> InnerLaunchAsync(TryResolveTool tryResolveTool,
145145
return LaunchResult.AlreadyRunningAndSupportsRefresh;
146146
}
147147

148-
KillIfMdi(tool, command);
148+
KillIfNotMdi(tool, command);
149149
}
150150

151151
if (MaxInstance.Reached())
@@ -235,7 +235,7 @@ Failed to launch diff tool.
235235
}
236236
}
237237

238-
static void KillIfMdi(ResolvedTool tool, string command)
238+
static void KillIfNotMdi(ResolvedTool tool, string command)
239239
{
240240
if (!tool.IsMdi)
241241
{

0 commit comments

Comments
 (0)