* Remove debug statement

git-svn-id: trunk@49558 -
(cherry picked from commit 7a7abea0ee)
This commit is contained in:
michael 2021-06-24 13:20:34 +00:00 committed by florian
parent 8b48137f8c
commit 151de3c1d8

View File

@ -244,10 +244,6 @@ procedure TJSONApplier.Execute;
if aPath='' then
exit;
D:=Result.FindPath(aPath);
if Assigned(D) then
Writeln('Have : ',D.ClassName)
else
Writeln('No D');
if (D=Nil) or Not (D is TJSONObject) then
Raise EJSON.CreateFmt(SErrPathNotFound,[aPath,aDesc]);
Result:=D as TJSONObject;