minor: resolve some mono compiler warnings

This commit is contained in:
Justin Clark-Casey (justincc)
2012-05-03 01:56:24 +01:00
parent 231a3bf147
commit 9ffc2c1062
3 changed files with 5 additions and 10 deletions

View File

@@ -1947,12 +1947,7 @@ namespace OpenSim.Region.CoreModules.Framework.EntityTransfer
Thread.Sleep(100);
}
if (count > 0)
return true;
else
return false;
return true;
return count > 0;
}
protected void SetInTransit(UUID id)