2
0
mirror of synced 2025-02-23 23:08:14 +00:00

cmd/gomobile: remove outdated TODO of bundle ID

The TODO message was introduced in CL 13041, but later resolved
in CL 77070 because it allows bundle id customization.

Remove the oudated TODO message.

Change-Id: Ib32793ace937f67b5c95d6efadd6d4eef48a8986
Reviewed-on: https://go-review.googlesource.com/c/mobile/+/369200
Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
Trust: Alex Rakoczy <alex@golang.org>
Run-TryBot: Alex Rakoczy <alex@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
This commit is contained in:
Changkun Ou 2021-12-05 16:18:59 +01:00 committed by Hyang-Ah Hana Kim
parent 1ab90197b3
commit 29d5ad490c

View File

@ -33,7 +33,6 @@ func goAppleBuild(pkg *packages.Package, bundleID string, targets []targetInfo)
infoplist := new(bytes.Buffer)
if err := infoplistTmpl.Execute(infoplist, infoplistTmplData{
// TODO: better bundle id.
BundleID: bundleID + "." + productName,
Name: strings.Title(path.Base(pkg.PkgPath)),
}); err != nil {