[mtouch/mmp] Remove dead code. (#5997)

This commit is contained in:
Rolf Bjarne Kvinge 2019-05-06 14:40:31 +02:00 коммит произвёл GitHub
Родитель 4b8fca6ed9
Коммит a36019c83c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 0 добавлений и 4 удалений

Просмотреть файл

@ -235,7 +235,6 @@ namespace Xamarin.Bundler {
public static int RunCommand (string path, string args, string[] env = null, StringBuilder output = null, bool suppressPrintOnErrors = false)
{
Exception stdin_exc = null;
var info = new ProcessStartInfo (path, args);
info.UseShellExecute = false;
info.RedirectStandardInput = false;
@ -295,9 +294,6 @@ namespace Xamarin.Bundler {
} else if (verbose > 0 && output.Length > 0 && !suppressPrintOnErrors) {
Console.WriteLine (output.ToString ());
}
if (stdin_exc != null)
throw stdin_exc;
}
return 0;