* Four more warnings bite the dust.
parent
14b37533aa
commit
4d9ed39444
|
@ -163,8 +163,9 @@ namespace OpenSim.Grid.MessagingServer
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Show(string ShowWhat)
|
public override void Show(string ShowWhat)
|
||||||
{
|
{
|
||||||
|
base.Show(ShowWhat);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -197,14 +197,14 @@ namespace SimpleApp
|
||||||
|
|
||||||
#region conscmd_callback Members
|
#region conscmd_callback Members
|
||||||
|
|
||||||
public void RunCmd(string cmd, string[] cmdparams)
|
public override void RunCmd(string cmd, string[] cmdparams)
|
||||||
{
|
{
|
||||||
throw new Exception("The method or operation is not implemented.");
|
base.RunCmd(cmd, cmdparams);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Show(string ShowWhat)
|
public override void Show(string ShowWhat)
|
||||||
{
|
{
|
||||||
throw new Exception("The method or operation is not implemented.");
|
base.Show(ShowWhat);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
|
@ -74,7 +74,6 @@ namespace OpenSim.ApplicationPlugins.LoadBalancer
|
||||||
private string serializeDir;
|
private string serializeDir;
|
||||||
|
|
||||||
private TcpServer mTcpServer;
|
private TcpServer mTcpServer;
|
||||||
private TcpClient mTcpClient;
|
|
||||||
|
|
||||||
public void Initialise(OpenSimMain openSim)
|
public void Initialise(OpenSimMain openSim)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue