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.
This commit is contained in:
Charles Krinke
2008-10-04 19:00:10 +00:00
parent a924fbae72
commit 275d4d30a2

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;