Forgot a return statement.
parent
9bdb585a93
commit
276b0a0cbe
|
@ -133,7 +133,7 @@ namespace OpenSim.Server.Handlers.Grid
|
||||||
if ((versionNumberMin > ProtocolVersions.ServerProtocolVersionMax && versionNumberMax < ProtocolVersions.ServerProtocolVersionMax))
|
if ((versionNumberMin > ProtocolVersions.ServerProtocolVersionMax && versionNumberMax < ProtocolVersions.ServerProtocolVersionMax))
|
||||||
{
|
{
|
||||||
// Can't do, there is no overlap in the acceptable ranges
|
// Can't do, there is no overlap in the acceptable ranges
|
||||||
FailureResult();
|
return FailureResult();
|
||||||
}
|
}
|
||||||
|
|
||||||
Dictionary<string, object> rinfoData = new Dictionary<string, object>();
|
Dictionary<string, object> rinfoData = new Dictionary<string, object>();
|
||||||
|
|
Loading…
Reference in New Issue