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

View file

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