Restrict IPresenceData.VerifyAgent

Restrict IPresenceData.VerifyAgent to only return bool result
This commit is contained in:
BlueWall
2012-12-09 15:08:32 -05:00
parent a37040d07a
commit 8efae93b51
4 changed files with 17 additions and 17 deletions

View File

@@ -53,6 +53,6 @@ namespace OpenSim.Data
bool ReportAgent(UUID sessionID, UUID regionID);
PresenceData[] Get(string field, string data);
bool Delete(string field, string val);
PresenceData VerifyAgent(UUID secureSessionID);
bool VerifyAgent(UUID agentId, UUID secureSessionID);
}
}