From 01e094f1b4ced780416522acee16aa8783e0453e Mon Sep 17 00:00:00 2001 From: c-parsons Date: Wed, 27 May 2020 21:34:26 -0400 Subject: [PATCH] Revert changes to singleton_ctx.go --- singleton_ctx.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/singleton_ctx.go b/singleton_ctx.go index f5024fe..3c0a24c 100644 --- a/singleton_ctx.go +++ b/singleton_ctx.go @@ -147,10 +147,6 @@ type SingletonContext interface { // Fs returns a pathtools.Filesystem that can be used to interact with files. Using the Filesystem interface allows // the singleton to be used in build system tests that run against a mock filesystem. Fs() pathtools.FileSystem - - // ModuleListFile returns a string representation of the path to the file - // which lists blueprint files to parse. - ModuleListFile() string } var _ SingletonContext = (*singletonContext)(nil) @@ -354,7 +350,3 @@ func (s *singletonContext) GlobWithDeps(pattern string, func (s *singletonContext) Fs() pathtools.FileSystem { return s.context.fs } - -func (s *singletonContext) ModuleListFile() string { - return s.context.moduleListFile -}