mirror of
https://github.com/furyfire/trueskill.git
synced 2025-03-26 11:08:01 +00:00
Cleaned up some of the run schedule parts
This commit is contained in:
@ -9,7 +9,8 @@ class HashMap
|
||||
|
||||
public function getValue($key)
|
||||
{
|
||||
return $this->_hashToValue[self::getHash($key)];
|
||||
$hash = self::getHash($key);
|
||||
return $this->_hashToValue[$hash];
|
||||
}
|
||||
|
||||
public function setValue($key, $value)
|
||||
|
Reference in New Issue
Block a user