From 275d4d30a2ef4e10fbcbeb2796d1a5e9f28af761 Mon Sep 17 00:00:00 2001 From: Charles Krinke Date: Sat, 4 Oct 2008 19:00:10 +0000 Subject: 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. --- OpenSim/Framework/PluginLoader.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenSim/Framework/PluginLoader.cs b/OpenSim/Framework/PluginLoader.cs index cabce1b..ab4e217 100644 --- a/OpenSim/Framework/PluginLoader.cs +++ b/OpenSim/Framework/PluginLoader.cs @@ -271,10 +271,10 @@ namespace OpenSim.Framework public class PluginExtensionNode : ExtensionNode { [NodeAttribute] - string provider; + string provider = ""; [NodeAttribute] - string type; + string type = ""; Type typeobj; -- cgit v1.1