diff --git a/Data/Git/Types.hs b/Data/Git/Types.hs index 599909b1385e7567a0894ec48be136966b86efff..c9da664f81af19018d0298ded90fd41f6f6e4ba3 100644 --- a/Data/Git/Types.hs +++ b/Data/Git/Types.hs @@ -185,11 +185,6 @@ data Person = Person -- | Represent a root tree with zero to many tree entries. data Tree hash = Tree { treeGetEnts :: [TreeEnt hash] } deriving (Show,Eq) -instance Monoid (Tree hash) where - mempty = Tree [] - mappend (Tree e1) (Tree e2) = Tree (e1 ++ e2) - mconcat trees = Tree $ concatMap treeGetEnts trees - -- | Represent a binary blob. data Blob hash = Blob { blobGetContent :: L.ByteString } deriving (Show,Eq)