remove unused fields
This commit is contained in:
parent
3ef0ac2fa5
commit
a6bd0076d4
1 changed files with 5 additions and 9 deletions
|
@ -7,14 +7,10 @@
|
|||
|
||||
module Types.BranchState where
|
||||
|
||||
data BranchState = BranchState {
|
||||
branchUpdated :: Bool, -- has the branch been updated this run?
|
||||
indexChecked :: Bool, -- has the index file been checked to exist?
|
||||
|
||||
-- the content of one file is cached
|
||||
cachedFile :: Maybe FilePath,
|
||||
cachedContent :: String
|
||||
}
|
||||
data BranchState = BranchState
|
||||
{ branchUpdated :: Bool -- has the branch been updated this run?
|
||||
, indexChecked :: Bool -- has the index file been checked to exist?
|
||||
}
|
||||
|
||||
startBranchState :: BranchState
|
||||
startBranchState = BranchState False False Nothing ""
|
||||
startBranchState = BranchState False False
|
||||
|
|
Loading…
Reference in a new issue