aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Friends
diff options
context:
space:
mode:
authorDiva Canto2013-07-04 09:17:01 -0700
committerDiva Canto2013-07-04 09:17:01 -0700
commit5eb78aad96f2dbaf7c4c0e5fa7e678076a2edbfc (patch)
treeeacc3e7e0384915c2b9595568f2cf49f42b9f61d /OpenSim/Services/Friends
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-5eb78aad96f2dbaf7c4c0e5fa7e678076a2edbfc.zip
opensim-SC_OLD-5eb78aad96f2dbaf7c4c0e5fa7e678076a2edbfc.tar.gz
opensim-SC_OLD-5eb78aad96f2dbaf7c4c0e5fa7e678076a2edbfc.tar.bz2
opensim-SC_OLD-5eb78aad96f2dbaf7c4c0e5fa7e678076a2edbfc.tar.xz
Revert "HG Friends: debug an issue where the friends data stored in the DB is incomplete."
This reverts commit 27cdfb7b840423cf8cee08988dc487eeb34d71c7.
Diffstat (limited to 'OpenSim/Services/Friends')
-rw-r--r--OpenSim/Services/Friends/FriendsService.cs9
1 files changed, 1 insertions, 8 deletions
diff --git a/OpenSim/Services/Friends/FriendsService.cs b/OpenSim/Services/Friends/FriendsService.cs
index dd3f733..e2033ac 100644
--- a/OpenSim/Services/Friends/FriendsService.cs
+++ b/OpenSim/Services/Friends/FriendsService.cs
@@ -29,7 +29,6 @@ using OpenMetaverse;
29using OpenSim.Framework; 29using OpenSim.Framework;
30using System; 30using System;
31using System.Collections.Generic; 31using System.Collections.Generic;
32using System.Reflection;
33using OpenSim.Services.Interfaces; 32using OpenSim.Services.Interfaces;
34using OpenSim.Data; 33using OpenSim.Data;
35using Nini.Config; 34using Nini.Config;
@@ -40,12 +39,7 @@ namespace OpenSim.Services.Friends
40{ 39{
41 public class FriendsService : FriendsServiceBase, IFriendsService 40 public class FriendsService : FriendsServiceBase, IFriendsService
42 { 41 {
43 private static readonly ILog m_log = 42 public FriendsService(IConfigSource config) : base(config)
44 LogManager.GetLogger(
45 MethodBase.GetCurrentMethod().DeclaringType);
46
47 public FriendsService(IConfigSource config)
48 : base(config)
49 { 43 {
50 } 44 }
51 45
@@ -104,7 +98,6 @@ namespace OpenSim.Services.Friends
104 d.Data = new Dictionary<string, string>(); 98 d.Data = new Dictionary<string, string>();
105 d.Data["Flags"] = flags.ToString(); 99 d.Data["Flags"] = flags.ToString();
106 100
107 m_log.DebugFormat("[FRIENDS]: Storing {0} {1}", PrincipalID, Friend);
108 return m_Database.Store(d); 101 return m_Database.Store(d);
109 } 102 }
110 103