cleanup: drop default filesystem handler
Drop the default file system handler from the constructor and just pass
it in to the one place it's needed.
Signed-off-by: Patrick Venture <venture@google.com>
Change-Id: I356adccbca583c20097e4e8977ce157ecd706f81
diff --git a/cleanup/cleanup.hpp b/cleanup/cleanup.hpp
index 3120a3c..2266668 100644
--- a/cleanup/cleanup.hpp
+++ b/cleanup/cleanup.hpp
@@ -20,7 +20,7 @@
FileCleanupHandler(const std::string& blobId,
const std::vector<std::string>& files,
- const FileSystemInterface* helper = &fileSystemHelper) :
+ const FileSystemInterface* helper) :
supported(blobId),
files(files), helper(helper)
{}