* Remove debug define

(cherry picked from commit 394a4ba6a0)
This commit is contained in:
Michaël Van Canneyt 2022-12-17 17:19:04 +01:00 committed by marcoonthegit
parent 22b643063e
commit 8441f2de01

View File

@ -18,7 +18,7 @@ unit fppdfparser;
{$mode ObjFPC}{$H+}
{$J-}
{$DEFINE DEBUGSTREAMS}
{ $DEFINE DEBUGSTREAMS}
{ $DEFINE DUMPSTREAMS}
interface
@ -827,7 +827,9 @@ function TPDFParser.ParseCMap(aStream : TStream) : TPDFCMap;
begin
Result:=TPDFCMap.Create;
try
{$IFDEF DEBUGSTREAMS}
SaveStreamToFile('parsecmap',aStream);
{$ENDIF}
ParseCMap(aStream,Result);
except
Result.Free;