Remove two warnings by assigning string provider = ""

and string type = "". Currently we are down to 14 warnings
in the VS2005 C# build which is pretty good.
0.6.0-stable
Charles Krinke 2008-10-04 19:00:10 +00:00
parent a924fbae72
commit 275d4d30a2
1 changed files with 2 additions and 2 deletions

View File

@ -271,10 +271,10 @@ namespace OpenSim.Framework
public class PluginExtensionNode : ExtensionNode
{
[NodeAttribute]
string provider;
string provider = "";
[NodeAttribute]
string type;
string type = "";
Type typeobj;