Fix test.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2019-03-29 09:45:32 +01:00
parent 41d20eeb28
commit 0f5073f3fb
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ class StringTokenizer {
}
public bool hasMoreTokens() {
return ($this->token !== false);
return $this->token ? true : false;
}
public string nextToken() {