summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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