Browse Source

Drop commented code

pull/65/head
Linquize 12 years ago
parent
commit
d21efc7494
  1. 8
      src/AddIns/VersionControl/GitAddIn/Src/GitGuiWrapper.cs

8
src/AddIns/VersionControl/GitAddIn/Src/GitGuiWrapper.cs

@ -65,20 +65,12 @@ namespace ICSharpCode.GitAddIn @@ -65,20 +65,12 @@ namespace ICSharpCode.GitAddIn
Process p = new Process();
p.StartInfo.FileName = path;
p.StartInfo.Arguments = arguments.ToString();
//p.StartInfo.RedirectStandardError = true;
//p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.UseShellExecute = false;
p.EnableRaisingEvents = true;
p.Exited += delegate {
p.Dispose();
if (callback != null) { ICSharpCode.SharpDevelop.Gui.WorkbenchSingleton.SafeThreadAsyncCall(callback); }
};
// p.OutputDataReceived += delegate(object sender, DataReceivedEventArgs e) {
// SvnClient.Instance.SvnCategory.AppendText(e.Data);
// };
// p.ErrorDataReceived += delegate(object sender, DataReceivedEventArgs e) {
// SvnClient.Instance.SvnCategory.AppendText(e.Data);
// };
p.Start();
} catch (Exception ex) {
MessageService.ShowError(ex.Message);

Loading…
Cancel
Save