aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/Migration.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Data/Migration.cs')
-rw-r--r--OpenSim/Data/Migration.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/OpenSim/Data/Migration.cs b/OpenSim/Data/Migration.cs
index 2083088..8fbf789 100644
--- a/OpenSim/Data/Migration.cs
+++ b/OpenSim/Data/Migration.cs
@@ -236,11 +236,9 @@ namespace OpenSim.Data
236 236
237 foreach (string s in names) 237 foreach (string s in names)
238 { 238 {
239 m_log.InfoFormat("[MIGRATIONS]: testing resource {0}", s);
240 Match m = _match.Match(s); 239 Match m = _match.Match(s);
241 if (m.Success) 240 if (m.Success)
242 { 241 {
243 m_log.Info("[MIGRATIONS]: Match: " + m.Groups[1].ToString());
244 int version = int.Parse(m.Groups[1].ToString()); 242 int version = int.Parse(m.Groups[1].ToString());
245 if (version > after) { 243 if (version > after) {
246 using (Stream resource = _assem.GetManifestResourceStream(s)) 244 using (Stream resource = _assem.GetManifestResourceStream(s))