httpRequest in win launcher uses utility program. Clean up usings and add missing license notices.

This commit is contained in:
Matthew Bowra-Dean
2010-12-31 14:40:38 +13:00
committed by Chris Forbes
parent de5d9abec3
commit a4493f48d5
6 changed files with 37 additions and 24 deletions

View File

@@ -12,8 +12,8 @@ using System;
using System.ComponentModel;
using System.Diagnostics;
using System.IO;
using System.Text;
using System.IO.Pipes;
using System.Text;
namespace OpenRA.Launcher
{
@@ -81,7 +81,7 @@ namespace OpenRA.Launcher
public static string CallSimpleResponse(string command, params string[] args)
{
var p = Call(command, args);
Call(command, args);
string responseString;
NamedPipeClientStream pipe = new NamedPipeClientStream(".", "OpenRA.Utility", PipeDirection.In);
pipe.Connect();