aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite/Tests/SQLiteInventoryTest.cs
diff options
context:
space:
mode:
authorJeff Ames2008-09-15 14:21:57 +0000
committerJeff Ames2008-09-15 14:21:57 +0000
commitab30c6dc62af2c8d46dafdcdaafcb6e9ec54325a (patch)
tree0b8bdea1421e26deabec1ee3bedcf2664124d78d /OpenSim/Data/SQLite/Tests/SQLiteInventoryTest.cs
parentFrom: mike pitman <pitman@us.ibm.com> (diff)
downloadopensim-SC_OLD-ab30c6dc62af2c8d46dafdcdaafcb6e9ec54325a.zip
opensim-SC_OLD-ab30c6dc62af2c8d46dafdcdaafcb6e9ec54325a.tar.gz
opensim-SC_OLD-ab30c6dc62af2c8d46dafdcdaafcb6e9ec54325a.tar.bz2
opensim-SC_OLD-ab30c6dc62af2c8d46dafdcdaafcb6e9ec54325a.tar.xz
Update svn properties, minor formatting cleanup, fix a compiler warning.
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/SQLite/Tests/SQLiteInventoryTest.cs9
1 files changed, 6 insertions, 3 deletions
diff --git a/OpenSim/Data/SQLite/Tests/SQLiteInventoryTest.cs b/OpenSim/Data/SQLite/Tests/SQLiteInventoryTest.cs
index 6e5c68d..14c4f56 100644
--- a/OpenSim/Data/SQLite/Tests/SQLiteInventoryTest.cs
+++ b/OpenSim/Data/SQLite/Tests/SQLiteInventoryTest.cs
@@ -48,9 +48,12 @@ namespace OpenSim.Data.SQLite.Tests
48 public void Init() 48 public void Init()
49 { 49 {
50 SuperInit(); 50 SuperInit();
51 try { 51 try
52 {
52 log4net.Config.XmlConfigurator.Configure(); 53 log4net.Config.XmlConfigurator.Configure();
53 } catch (Exception e) { 54 }
55 catch (Exception)
56 {
54 // I don't care, just leave log4net off 57 // I don't care, just leave log4net off
55 } 58 }
56 connect = "URI=file:" + file + ",version=3"; 59 connect = "URI=file:" + file + ",version=3";
@@ -64,4 +67,4 @@ namespace OpenSim.Data.SQLite.Tests
64 System.IO.File.Delete(file); 67 System.IO.File.Delete(file);
65 } 68 }
66 } 69 }
67} \ No newline at end of file 70}