diff options
author | Melanie | 2012-04-04 23:48:37 +0200 |
---|---|---|
committer | Melanie | 2012-04-04 23:48:37 +0200 |
commit | 77caa286a4c0cb81bd0cdb4f94dc739c7c45fb21 (patch) | |
tree | 182786d928f7c6a3f7811e2a9a6addba21eafb80 /OpenSim/Region | |
parent | Adjust Snoopy's contribution for AVN (diff) | |
download | opensim-SC_OLD-77caa286a4c0cb81bd0cdb4f94dc739c7c45fb21.zip opensim-SC_OLD-77caa286a4c0cb81bd0cdb4f94dc739c7c45fb21.tar.gz opensim-SC_OLD-77caa286a4c0cb81bd0cdb4f94dc739c7c45fb21.tar.bz2 opensim-SC_OLD-77caa286a4c0cb81bd0cdb4f94dc739c7c45fb21.tar.xz |
Remove some unneeded parens
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/CoreModules/World/Land/LandObject.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/World/Land/LandObject.cs b/OpenSim/Region/CoreModules/World/Land/LandObject.cs index 3b677e3..1f3f075 100644 --- a/OpenSim/Region/CoreModules/World/Land/LandObject.cs +++ b/OpenSim/Region/CoreModules/World/Land/LandObject.cs | |||
@@ -526,7 +526,7 @@ namespace OpenSim.Region.CoreModules.World.Land | |||
526 | if (HasGroupAccess(avatar)) | 526 | if (HasGroupAccess(avatar)) |
527 | return false; | 527 | return false; |
528 | 528 | ||
529 | return (!IsInLandAccessList(avatar)); | 529 | return !IsInLandAccessList(avatar); |
530 | } | 530 | } |
531 | 531 | ||
532 | public bool IsInLandAccessList(UUID avatar) | 532 | public bool IsInLandAccessList(UUID avatar) |