Fix test.
All checks were successful
The build was successful.

This commit is contained in:
Rafal Kupiec 2019-03-29 09:45:32 +01:00
부모 41d20eeb28
커밋 0f5073f3fb
로그인 계정: belliash
GPG 키 ID: 4E829243E0CFE6B4

파일 보기

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