diff options
Diffstat (limited to 'deps/deps.go')
-rw-r--r-- | deps/deps.go | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/deps/deps.go b/deps/deps.go index 8f3d81632..49b056a7f 100644 --- a/deps/deps.go +++ b/deps/deps.go @@ -5,7 +5,6 @@ import ( "time" "github.com/pkg/errors" - "go.uber.org/atomic" "github.com/gohugoio/hugo/cache/filecache" "github.com/gohugoio/hugo/common/loggers" @@ -377,11 +376,8 @@ type DepsCfg struct { // BuildFlags are flags that may be turned on during a build. type BuildFlags struct { - HasLateTemplate atomic.Bool } func NewBuildFlags() BuildFlags { - return BuildFlags{ - //HasLateTemplate: atomic.NewBool(false), - } + return BuildFlags{} } |