Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
JakuJ committed Aug 27, 2024
1 parent ff425fc commit 8e078d3
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/Raise/CodeLens.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
{-# LANGUAGE CPP #-}

module Raise.CodeLens (
registerLenses
) where
Expand Down Expand Up @@ -29,9 +27,5 @@ cmdList = [ ("Typecheck", "raise.typeCheck")
registerLenses :: LspM () ()
registerLenses = do
let rsp = map (uncurry registerCommand) cmdList
#ifdef mingw32_HOST_OS
_ <- registerCapability mempty SMethod_TextDocumentCodeLens regOpts $ \_ responder -> responder (Right (InL rsp))
#else
_ <- registerCapability SMethod_TextDocumentCodeLens regOpts $ \_ responder -> responder (Right (InL rsp))
#endif
pure ()

0 comments on commit 8e078d3

Please sign in to comment.