From ce39ec9005963d65c6f980f1f23823f5cb97d6dc Mon Sep 17 00:00:00 2001 From: "Justin Clark-Casey (justincc)" Date: Sat, 27 Nov 2010 00:51:42 +0000 Subject: [PATCH] fix grammar in last commit, remove redundant code --- OpenSim/Region/Framework/Scenes/UuidGatherer.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/OpenSim/Region/Framework/Scenes/UuidGatherer.cs b/OpenSim/Region/Framework/Scenes/UuidGatherer.cs index 5ac2437162..ddd930b774 100644 --- a/OpenSim/Region/Framework/Scenes/UuidGatherer.cs +++ b/OpenSim/Region/Framework/Scenes/UuidGatherer.cs @@ -107,12 +107,12 @@ namespace OpenSim.Region.Framework.Scenes GetSceneObjectAssetUuids(assetUuid, assetUuids); } } - catch (Exception e) + catch (Exception) { m_log.ErrorFormat( - "[UUID GATHERER]: Failed to gathering uuids for asset id {0}, type {1}", + "[UUID GATHERER]: Failed to gather uuids for asset id {0}, type {1}", assetUuid, assetType); - throw e; + throw; } }