Update service.zs

remove erroneous semicolon
This commit is contained in:
Rachael Alexanderson 2023-02-19 10:14:36 -05:00 committed by GitHub
parent da72f8f36a
commit 1f2809244d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ class ServiceIterator
while(it.Next())
{
String cName = it.GetKey();
if(cName.MakeLower().IndexOf(mServiceName) != -1);
if(cName.MakeLower().IndexOf(mServiceName) != -1)
return it.GetValue();
}
return null;