Ver código fonte

* Remove debug statement

git-svn-id: trunk@49558 -
michael 4 anos atrás
pai
commit
7a7abea0ee
1 arquivos alterados com 0 adições e 4 exclusões
  1. 0 4
      packages/fcl-json/src/fpjsonapply.pp

+ 0 - 4
packages/fcl-json/src/fpjsonapply.pp

@@ -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;