5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-10 22:19:46 +08:00

duplicate code spotted (#221)

* fix: duplicate code
This commit is contained in:
Byron 2019-09-03 11:21:13 +03:00 committed by Lea Anthony
parent 1ccdb1bc4e
commit 99a3f87cef

View File

@ -112,9 +112,9 @@ func (ph *ProjectHelper) NewProjectOptions() *ProjectOptions {
Description: "Enter your project description",
Version: "0.1.0",
BinaryName: "",
system: NewSystemHelper(),
log: NewLogger(),
templates: NewTemplateHelper(),
system: ph.system,
log: ph.log,
templates: ph.templates,
Author: &author{},
}