rtl: fixed sysutils

This commit is contained in:
mattias 2020-05-06 17:45:57 +00:00
parent 1bf007ef13
commit 4d995df2f7

View File

@ -5310,7 +5310,7 @@ end;
class function TStringHelper.IsNullOrWhiteSpace(const AValue: string): Boolean;
begin
Result:=system.Length(Trim(AValue))=0;
Result:=system.Length(sysutils.Trim(AValue))=0;
end;