Change to new AcediaCore collections
This commit is contained in:
parent
d3d6ae4627
commit
83f137c063
2 changed files with 8 additions and 9 deletions
|
|
@ -167,13 +167,13 @@ public function ReportBadOptions()
|
|||
}
|
||||
|
||||
/**
|
||||
* @return Server options as key-value pairs in an `AssociativeArray`.
|
||||
* @return Server options as key-value pairs in an `HashTable`.
|
||||
*/
|
||||
public function AssociativeArray GetOptions()
|
||||
public function HashTable GetOptions()
|
||||
{
|
||||
local int i;
|
||||
local AssociativeArray result;
|
||||
result = _.collections.EmptyAssociativeArray();
|
||||
local int i;
|
||||
local HashTable result;
|
||||
result = _.collections.EmptyHashTable();
|
||||
for (i = 0; i < option.length; i += 1)
|
||||
{
|
||||
if (!ValidateServerURLName(option[i].key)) continue;
|
||||
|
|
|
|||
Reference in a new issue