diff options
author | UbitUmarov | 2015-11-21 01:55:17 +0000 |
---|---|---|
committer | UbitUmarov | 2015-11-21 01:55:17 +0000 |
commit | 3f4fdacb343b2234ed9381e4822c5fa436b3caa7 (patch) | |
tree | 19c564ae101b625c753185797d3de8588c711c6c /OpenSim/Region/Framework/Scenes/SOPVehicle.cs | |
parent | remove some duplicate using statements (diff) | |
download | opensim-SC-3f4fdacb343b2234ed9381e4822c5fa436b3caa7.zip opensim-SC-3f4fdacb343b2234ed9381e4822c5fa436b3caa7.tar.gz opensim-SC-3f4fdacb343b2234ed9381e4822c5fa436b3caa7.tar.bz2 opensim-SC-3f4fdacb343b2234ed9381e4822c5fa436b3caa7.tar.xz |
remove a warning
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SOPVehicle.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SOPVehicle.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SOPVehicle.cs b/OpenSim/Region/Framework/Scenes/SOPVehicle.cs index 58f4641..2b33cf7 100644 --- a/OpenSim/Region/Framework/Scenes/SOPVehicle.cs +++ b/OpenSim/Region/Framework/Scenes/SOPVehicle.cs | |||
@@ -533,18 +533,18 @@ namespace OpenSim.Region.Framework.Scenes | |||
533 | { | 533 | { |
534 | nodeName = xtr.Name; | 534 | nodeName = xtr.Name; |
535 | 535 | ||
536 | // m_log.DebugFormat("[ExternalRepresentationUtils]: Processing: {0}", nodeName); | 536 | // m_log.DebugFormat("[ExternalRepresentationUtils]: Processing: {0}", nodeName); |
537 | 537 | ||
538 | Action p = null; | 538 | Action p = null; |
539 | if (processors.TryGetValue(xtr.Name, out p)) | 539 | if (processors.TryGetValue(xtr.Name, out p)) |
540 | { | 540 | { |
541 | // m_log.DebugFormat("[ExternalRepresentationUtils]: Found {0} processor, nodeName); | 541 | // m_log.DebugFormat("[ExternalRepresentationUtils]: Found {0} processor, nodeName); |
542 | 542 | ||
543 | try | 543 | try |
544 | { | 544 | { |
545 | p(); | 545 | p(); |
546 | } | 546 | } |
547 | catch (Exception e) | 547 | catch |
548 | { | 548 | { |
549 | errors = true; | 549 | errors = true; |
550 | if (xtr.NodeType == XmlNodeType.EndElement) | 550 | if (xtr.NodeType == XmlNodeType.EndElement) |