* Four more warnings bite the dust.

0.6.0-stable
Adam Frisby 2008-03-05 21:50:58 +00:00
parent 14b37533aa
commit 4d9ed39444
3 changed files with 6 additions and 6 deletions

View File

@ -163,8 +163,9 @@ namespace OpenSim.Grid.MessagingServer
} }
} }
public void Show(string ShowWhat) public override void Show(string ShowWhat)
{ {
base.Show(ShowWhat);
} }
} }
} }

View File

@ -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

View File

@ -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)
{ {