[xharness] Rename variable to fix compiler warning. (#308)

Fixes this warning:

    SimpleHttpListener.cs(12,8): warning CS0108: `xharness.SimpleHttpListener.connected' hides inherited member `xharness.SimpleListener.connected'. Use the new keyword if hiding was intended
This commit is contained in:
Rolf Bjarne Kvinge 2016-06-28 14:13:36 -07:00 коммит произвёл Sebastien Pouliot
Родитель 19cceab4d5
Коммит fb607bef03
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -9,7 +9,7 @@ namespace xharness
public class SimpleHttpListener : SimpleListener
{
HttpListener server;
bool connected;
bool connected_once;
public override void Initialize ()
{
@ -78,8 +78,8 @@ namespace xharness
switch (request.RawUrl) {
case "/Start":
if (!connected) {
connected = true;
if (!connected_once) {
connected_once = true;
Connected (request.RemoteEndPoint.ToString ());
}
break;