aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/PluginLoader.cs
diff options
context:
space:
mode:
authorCharles Krinke2008-10-04 19:00:10 +0000
committerCharles Krinke2008-10-04 19:00:10 +0000
commit275d4d30a2ef4e10fbcbeb2796d1a5e9f28af761 (patch)
tree8635e7b0ec4554cf64461e09564560a169d4ba07 /OpenSim/Framework/PluginLoader.cs
parent* minor: Remove warning (diff)
downloadopensim-SC_OLD-275d4d30a2ef4e10fbcbeb2796d1a5e9f28af761.zip
opensim-SC_OLD-275d4d30a2ef4e10fbcbeb2796d1a5e9f28af761.tar.gz
opensim-SC_OLD-275d4d30a2ef4e10fbcbeb2796d1a5e9f28af761.tar.bz2
opensim-SC_OLD-275d4d30a2ef4e10fbcbeb2796d1a5e9f28af761.tar.xz
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.
Diffstat (limited to 'OpenSim/Framework/PluginLoader.cs')
-rw-r--r--OpenSim/Framework/PluginLoader.cs4
1 files 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
271 public class PluginExtensionNode : ExtensionNode 271 public class PluginExtensionNode : ExtensionNode
272 { 272 {
273 [NodeAttribute] 273 [NodeAttribute]
274 string provider; 274 string provider = "";
275 275
276 [NodeAttribute] 276 [NodeAttribute]
277 string type; 277 string type = "";
278 278
279 Type typeobj; 279 Type typeobj;
280 280