aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Addons
diff options
context:
space:
mode:
authorDiva Canto2013-07-28 13:53:47 -0700
committerDiva Canto2013-07-28 13:53:47 -0700
commit63f6c8f27ca280a7d362af08ba1716d5f28e3137 (patch)
tree56c027e7f6c84b492de3463fb2a81e0252088183 /OpenSim/Addons
parentAdded BasicSearchModule.cs which handles OnDirFindQuery events. Removed that ... (diff)
downloadopensim-SC_OLD-63f6c8f27ca280a7d362af08ba1716d5f28e3137.zip
opensim-SC_OLD-63f6c8f27ca280a7d362af08ba1716d5f28e3137.tar.gz
opensim-SC_OLD-63f6c8f27ca280a7d362af08ba1716d5f28e3137.tar.bz2
opensim-SC_OLD-63f6c8f27ca280a7d362af08ba1716d5f28e3137.tar.xz
Removed commented lines and useless debug message
Diffstat (limited to 'OpenSim/Addons')
-rw-r--r--OpenSim/Addons/Groups/GroupsModule.cs16
1 files changed, 0 insertions, 16 deletions
diff --git a/OpenSim/Addons/Groups/GroupsModule.cs b/OpenSim/Addons/Groups/GroupsModule.cs
index 214a131..826fcbf 100644
--- a/OpenSim/Addons/Groups/GroupsModule.cs
+++ b/OpenSim/Addons/Groups/GroupsModule.cs
@@ -909,23 +909,7 @@ namespace OpenSim.Groups
909 { 909 {
910 if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called for notice {1}", System.Reflection.MethodBase.GetCurrentMethod().Name, groupNoticeID); 910 if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called for notice {1}", System.Reflection.MethodBase.GetCurrentMethod().Name, groupNoticeID);
911 911
912 //GroupRecord groupInfo = m_groupData.GetGroupRecord(GetRequestingAgentID(remoteClient), data.GroupID, null);
913
914 GridInstantMessage msg = CreateGroupNoticeIM(remoteClient.AgentId, groupNoticeID, (byte)InstantMessageDialog.GroupNoticeRequested); 912 GridInstantMessage msg = CreateGroupNoticeIM(remoteClient.AgentId, groupNoticeID, (byte)InstantMessageDialog.GroupNoticeRequested);
915 //GridInstantMessage msg = new GridInstantMessage();
916 //msg.imSessionID = UUID.Zero.Guid;
917 //msg.fromAgentID = data.GroupID.Guid;
918 //msg.toAgentID = GetRequestingAgentID(remoteClient).Guid;
919 //msg.timestamp = (uint)Util.UnixTimeSinceEpoch();
920 //msg.fromAgentName = "Group Notice : " + groupInfo == null ? "Unknown" : groupInfo.GroupName;
921 //msg.message = data.noticeData.Subject + "|" + data.Message;
922 //msg.dialog = (byte)OpenMetaverse.InstantMessageDialog.GroupNoticeRequested;
923 //msg.fromGroup = true;
924 //msg.offline = (byte)0;
925 //msg.ParentEstateID = 0;
926 //msg.Position = Vector3.Zero;
927 //msg.RegionID = UUID.Zero.Guid;
928 //msg.binaryBucket = data.BinaryBucket;
929 913
930 OutgoingInstantMessage(msg, GetRequestingAgentID(remoteClient)); 914 OutgoingInstantMessage(msg, GetRequestingAgentID(remoteClient));
931 } 915 }