summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-02-08 14:52:25 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-02-08 14:52:25 -0400
commitb1ad6e6c57008adbb26f6f0674161340e8742c74 (patch)
tree111dfdb2aff685257a9f078efd7a402784bb9463
parent616dc248d07f9b1e6ca7406262df01ec9f07f706 (diff)
remove dead code
-rw-r--r--Command/FuzzTest.hs7
1 files changed, 0 insertions, 7 deletions
diff --git a/Command/FuzzTest.hs b/Command/FuzzTest.hs
index 2ed0fed62..08103edc8 100644
--- a/Command/FuzzTest.hs
+++ b/Command/FuzzTest.hs
@@ -146,13 +146,6 @@ genFuzzFile = do
genFuzzDir :: IO FuzzDir
genFuzzDir = mkFuzzDir <$> (getStdRandom (randomR (1,16)) :: IO Int)
-localFile :: FilePath -> Bool
-localFile f
- | isAbsolute f = False
- | ".." `isInfixOf` f = False
- | ".git" `isPrefixOf` f = False
- | otherwise = True
-
data TimeStampedFuzzAction
= Started UTCTime FuzzAction
| Finished UTCTime Bool