remove some useless NULL arguments

This commit is contained in:
UbitUmarov
2019-10-22 12:23:19 +01:00
parent d838a7e5c7
commit b98ad6c53c
11 changed files with 51 additions and 63 deletions

View File

@@ -593,7 +593,7 @@ namespace OpenSim
estateOwnerPassword = Config.Configs[ESTATE_SECTION_NAME].GetString("DefaultEstateOwnerPassword", null);
}
MainConsole.Instance.Output("Estate {0} has no owner set.", null, regionInfo.EstateSettings.EstateName);
MainConsole.Instance.Output("Estate {0} has no owner set.", regionInfo.EstateSettings.EstateName);
List<char> excluded = new List<char>(new char[1]{' '});
@@ -1003,7 +1003,7 @@ namespace OpenSim
if (estatesByName.ContainsKey(newName))
{
MainConsole.Instance.Output("An estate named {0} already exists. Please try again.", null, newName);
MainConsole.Instance.Output("An estate named {0} already exists. Please try again.", newName);
return false;
}