From 77d6a73b1b18256ccfba35e63be0abe3818c9267 Mon Sep 17 00:00:00 2001 From: mattias Date: Wed, 2 Jul 2008 19:33:47 +0000 Subject: [PATCH] reduced debugging output git-svn-id: trunk@15660 - --- components/codetools/nonpascalcodetools.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/codetools/nonpascalcodetools.pas b/components/codetools/nonpascalcodetools.pas index ca6eb956b6..abe190f2e8 100644 --- a/components/codetools/nonpascalcodetools.pas +++ b/components/codetools/nonpascalcodetools.pas @@ -519,12 +519,12 @@ function ExtractCodeFromMakefile(const Source: string): string; var NewLength: integer; begin - DebugLn(['ExtractCodeFromMakefile START ',Result]); + //DebugLn(['ExtractCodeFromMakefile START ',Result]); Result:=''; Run(Result,NewLength); SetLength(Result,NewLength); Run(Result,NewLength); - DebugLn(['ExtractCodeFromMakefile END ',Result]); + //DebugLn(['ExtractCodeFromMakefile END ',Result]); end; function CConstantToInt64(const s: string; out i: int64): boolean;