Explorar el Código

* Remove debug statement

git-svn-id: trunk@49558 -
(cherry picked from commit 7a7abea0ee38efa4848971a1140b52f0378c46ea)
michael hace 4 años
padre
commit
151de3c1d8
Se han modificado 1 ficheros con 0 adiciones y 4 borrados
  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;