diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-03-14 06:54:00 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-03-14 07:07:45 +0100 |
commit | 2c107e71572888327496d327a36737c02f64d894 (patch) | |
tree | c209961b40bce8c8874e7941801c4fbbade3ed40 /app/Comment.hs | |
parent | f2e36372b4e07993a4992ab29585d4876b28e094 (diff) |
chore: refactor `Comment.Language.fromPath`
Diffstat (limited to 'app/Comment.hs')
-rw-r--r-- | app/Comment.hs | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/app/Comment.hs b/app/Comment.hs index 123acec..febd47e 100644 --- a/app/Comment.hs +++ b/app/Comment.hs @@ -50,15 +50,8 @@ data Point = Point getComments :: Git.CommitHash -> FilePath -> IO [Comment] getComments commitHash filePath = fmap mergeLineComments - . ( extractComments - filePath - ( -- TODO Support amiguous file languages - -- - -- @backlog - N.head language - ) - . LB.toStrict - ) + . extractComments filePath language + . LB.toStrict =<< catch (Git.readTextFileOfBS commitHash filePath) (\(_ :: E.CannotReadFile) -> pure "") |