Remove IClientAPI from the money module. It was only used to pass in the

agent id anyway
This commit is contained in:
Melanie
2012-01-28 00:18:12 +00:00
parent 7837c611fb
commit 7352aea9ac
6 changed files with 10 additions and 10 deletions

View File

@@ -775,11 +775,11 @@ namespace OpenSim.Region.OptionalModules.World.MoneyModule
// Please do not refactor these to be just one method
// Existing implementations need the distinction
//
public bool UploadCovered(IClientAPI client, int amount)
public bool UploadCovered(UUID agentID, int amount)
{
return true;
}
public bool AmountCovered(IClientAPI client, int amount)
public bool AmountCovered(UUID agentID, int amount)
{
return true;
}