diff options
author | lbsa71 | 2009-02-12 09:53:12 +0000 |
---|---|---|
committer | lbsa71 | 2009-02-12 09:53:12 +0000 |
commit | 801da4346aeb3c08969c4845f5c595135a64470a (patch) | |
tree | 2f06e24c72e0d513c8e4c6aa9b75cd2c7b50f393 /OpenSim/Region/CoreModules/Scripting/EMailModules | |
parent | Thanks Kitto Flora for a patch that adds automatic min fly height to ODE - Ma... (diff) | |
download | opensim-SC-801da4346aeb3c08969c4845f5c595135a64470a.zip opensim-SC-801da4346aeb3c08969c4845f5c595135a64470a.tar.gz opensim-SC-801da4346aeb3c08969c4845f5c595135a64470a.tar.bz2 opensim-SC-801da4346aeb3c08969c4845f5c595135a64470a.tar.xz |
* optimized usings.
Diffstat (limited to 'OpenSim/Region/CoreModules/Scripting/EMailModules')
-rw-r--r-- | OpenSim/Region/CoreModules/Scripting/EMailModules/EmailModule.cs | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/EMailModules/EmailModule.cs b/OpenSim/Region/CoreModules/Scripting/EMailModules/EmailModule.cs index c23ff1e..2e33d46 100644 --- a/OpenSim/Region/CoreModules/Scripting/EMailModules/EmailModule.cs +++ b/OpenSim/Region/CoreModules/Scripting/EMailModules/EmailModule.cs | |||
@@ -25,19 +25,18 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Reflection; | 29 | using System.Collections.Generic; |
30 | using System.Collections.Generic; | 30 | using System.Reflection; |
31 | using System.Text.RegularExpressions; | 31 | using System.Text.RegularExpressions; |
32 | using OpenMetaverse; | 32 | using DotNetOpenMail; |
33 | using OpenSim.Framework; | 33 | using DotNetOpenMail.SmtpAuth; |
34 | using OpenSim.Region.Framework.Interfaces; | 34 | using log4net; |
35 | using OpenSim.Region.Framework.Scenes; | 35 | using Nini.Config; |
36 | using log4net; | 36 | using OpenMetaverse; |
37 | using Nini.Config; | 37 | using OpenSim.Region.Framework.Interfaces; |
38 | using DotNetOpenMail; | 38 | using OpenSim.Region.Framework.Scenes; |
39 | using DotNetOpenMail.SmtpAuth; | 39 | |
40 | |||
41 | namespace OpenSim.Region.CoreModules.Scripting.EmailModules | 40 | namespace OpenSim.Region.CoreModules.Scripting.EmailModules |
42 | { | 41 | { |
43 | public class EmailModule : IEmailModule | 42 | public class EmailModule : IEmailModule |