Merge pull request #72 from shurcooL/remove-unused-Config-field
Remove unused field in Config.
This commit is contained in:
commit
8ee21af0fa
|
@ -127,11 +127,6 @@ type Config struct {
|
||||||
// repository.
|
// repository.
|
||||||
Dev bool
|
Dev bool
|
||||||
|
|
||||||
// Recursively process all assets in the input directory and its
|
|
||||||
// sub directories. This defaults to false, so only files in the
|
|
||||||
// input directory itself are read.
|
|
||||||
Recursive bool
|
|
||||||
|
|
||||||
// Ignores any filenames matching the regex pattern specified, e.g.
|
// Ignores any filenames matching the regex pattern specified, e.g.
|
||||||
// path/to/file.ext will ignore only that file, or \\.gitignore
|
// path/to/file.ext will ignore only that file, or \\.gitignore
|
||||||
// will match any .gitignore file.
|
// will match any .gitignore file.
|
||||||
|
@ -147,7 +142,6 @@ func NewConfig() *Config {
|
||||||
c.NoMemCopy = false
|
c.NoMemCopy = false
|
||||||
c.NoCompress = false
|
c.NoCompress = false
|
||||||
c.Debug = false
|
c.Debug = false
|
||||||
c.Recursive = false
|
|
||||||
c.Output = "./bindata.go"
|
c.Output = "./bindata.go"
|
||||||
c.Ignore = make([]*regexp.Regexp, 0)
|
c.Ignore = make([]*regexp.Regexp, 0)
|
||||||
return c
|
return c
|
||||||
|
|
Loading…
Reference in New Issue
Block a user