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
|
module Types.BranchState where
|
||||||
|
|
||||||
data BranchState = BranchState {
|
data BranchState = BranchState
|
||||||
branchUpdated :: Bool, -- has the branch been updated this run?
|
{ branchUpdated :: Bool -- has the branch been updated this run?
|
||||||
indexChecked :: Bool, -- has the index file been checked to exist?
|
, indexChecked :: Bool -- has the index file been checked to exist?
|
||||||
|
}
|
||||||
-- the content of one file is cached
|
|
||||||
cachedFile :: Maybe FilePath,
|
|
||||||
cachedContent :: String
|
|
||||||
}
|
|
||||||
|
|
||||||
startBranchState :: BranchState
|
startBranchState :: BranchState
|
||||||
startBranchState = BranchState False False Nothing ""
|
startBranchState = BranchState False False
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue