cosmetics

This commit is contained in:
UbitUmarov
2020-08-09 01:37:54 +01:00
parent 592b94d142
commit a2fe315d94
7 changed files with 444 additions and 525 deletions

View File

@@ -458,9 +458,7 @@ namespace OpenSim.Region.CoreModules.World.Permissions
if (args.Length > 2)
{
bool val;
if (!bool.TryParse(args[2], out val))
if (!bool.TryParse(args[2], out bool val))
return;
m_bypassPermissions = val;
@@ -487,9 +485,7 @@ namespace OpenSim.Region.CoreModules.World.Permissions
if (args.Length > 2)
{
bool val;
if (!bool.TryParse(args[2], out val))
if (!bool.TryParse(args[2], out bool val))
return;
m_bypassPermissionsValue = val;
@@ -508,9 +504,7 @@ namespace OpenSim.Region.CoreModules.World.Permissions
if (args.Length > 2)
{
bool val;
if (!bool.TryParse(args[2], out val))
if (!bool.TryParse(args[2], out bool val))
return;
m_debugPermissions = val;