diff options
Diffstat (limited to 'Types/BranchState.hs')
-rw-r--r-- | Types/BranchState.hs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Types/BranchState.hs b/Types/BranchState.hs index 65d0642a1..40d7f5c2c 100644 --- a/Types/BranchState.hs +++ b/Types/BranchState.hs @@ -9,10 +9,9 @@ module Types.BranchState where data BranchState = BranchState { branchUpdated :: Bool, - branchChanged :: Bool, cachedFile :: Maybe FilePath, cachedContent :: String } startBranchState :: BranchState -startBranchState = BranchState False False Nothing "" +startBranchState = BranchState False Nothing "" |