diff options
author | Charles Krinke | 2008-10-04 19:00:10 +0000 |
---|---|---|
committer | Charles Krinke | 2008-10-04 19:00:10 +0000 |
commit | 275d4d30a2ef4e10fbcbeb2796d1a5e9f28af761 (patch) | |
tree | 8635e7b0ec4554cf64461e09564560a169d4ba07 | |
parent | * minor: Remove warning (diff) | |
download | opensim-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.
-rw-r--r-- | OpenSim/Framework/PluginLoader.cs | 4 |
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 | ||