From 998de2e7cea9e184f48c4219d09ad18f5147cae3 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 29 Jan 2025 17:19:01 -0400 Subject: [PATCH] remove temp debugging code --- Git/HashObject.hs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Git/HashObject.hs b/Git/HashObject.hs index 85d027348b..704d310c9d 100644 --- a/Git/HashObject.hs +++ b/Git/HashObject.hs @@ -5,7 +5,6 @@ - Licensed under the GNU AGPL version 3 or higher. -} -{-# LANGUAGE CPP #-} {-# LANGUAGE OverloadedStrings #-} module Git.HashObject where @@ -49,10 +48,6 @@ hashFile hdl@(HashObjectHandle h _ _) file = do -- So, make the filename absolute, which will work now -- and also if git's behavior later changes. file' <- absPath file - -- XXX windows crash debugging -#ifndef mingw32_HOST_OS - hPutStrLn stderr $ show ("hashFile called on file", file, "abspath is", file') -#endif if newline `S.elem` file' || carriagereturn `S.elem` file then hashFile' hdl file else CoProcess.query h (send file') receive