Skip to content

Commit 8f7a97e

Browse files
committed
Fix Show instance
1 parent a538641 commit 8f7a97e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ghcide/src/Development/IDE/Core/RuleTypes.hs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,10 @@ newtype GhcSessionDeps = GhcSessionDeps_
421421
-- Required for interactive evaluation, but leads to more cache invalidations
422422
fullModSummary :: Bool
423423
}
424-
deriving newtype (Eq, Show, Typeable, Hashable, NFData)
424+
deriving newtype (Eq, Typeable, Hashable, NFData)
425+
426+
instance Show GhcSessionDeps where
427+
show _ = "GhcSessionDeps"
425428

426429
pattern GhcSessionDeps :: GhcSessionDeps
427430
pattern GhcSessionDeps = GhcSessionDeps_ False

0 commit comments

Comments
 (0)