fix(omaha): use struct initialization

save some lines of code and use struct initialization
This commit is contained in:
Brandon Philips 2013-04-01 09:59:32 -07:00
parent 8a80b4e359
commit 8536d53703
1 changed files with 2 additions and 9 deletions

View File

@ -30,10 +30,7 @@ type Request struct {
func NewRequest(version string, platform string, sp string, arch string) *Request {
r := new(Request)
r.Protocol = "3.0"
r.Os.Version = version
r.Os.Platform = platform
r.Os.Sp = sp
r.Os.Arch = arch
r.Os = Os{Version: version, Platform: platform, Sp: sp, Arch: arch}
return r
}
@ -138,11 +135,7 @@ type Os struct {
}
func NewOs(platform string, version string, sp string, arch string) *Os {
o := new(Os)
o.Version = version
o.Platform = platform
o.Sp = sp
o.Arch = arch
o := &Os{Version: version, Platform: platform, Sp: sp, Arch: arch}
return o
}