-
Notifications
You must be signed in to change notification settings - Fork 17.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmd: use omitzero option for time.Time #69905
base: master
Are you sure you want to change the base?
cmd: use omitzero option for time.Time #69905
Conversation
The doc of time.Time says: Programs using times should typically store and pass them as values, not pointers. That is, time variables and struct fields should be of type time.Time, not *time.Time. Since CL 615676 added omitzero option to encoding/json package, we can just replace (*time.Time + omitempty) with (time.Time + omitzero). Change-Id: I5593c4b45af291d015433bd1d164f1c1378db642
This PR (HEAD: 9f0d66f) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/620595. Important tips:
|
Message from Gopher Robot: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/620595. |
Message from Ian Lance Taylor: Patch Set 1: Commit-Queue+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/620595. |
Message from Go LUCI: Patch Set 1: Dry run: CV is trying the patch. Bot data: {"action":"start","triggered_at":"2024-10-17T00:46:29Z","revision":"eb194c03f6fda7752f0a809f1f88cda122c542dd"} Please don’t reply on this GitHub thread. Visit golang.org/cl/620595. |
Message from Ian Lance Taylor: Patch Set 1: -Commit-Queue Please don’t reply on this GitHub thread. Visit golang.org/cl/620595. |
Message from Go LUCI: Patch Set 1: This CL has passed the run Please don’t reply on this GitHub thread. Visit golang.org/cl/620595. |
Message from Go LUCI: Patch Set 1: LUCI-TryBot-Result+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/620595. |
Message from bcd a: Patch Set 1: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/620595. |
Message from Michael Matloob: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/620595. |
Message from bcd a: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/620595. |
The doc of time.Time says:
Programs using times should typically store and pass them as values,
not pointers. That is, time variables and struct fields should be of type
time.Time, not *time.Time.
Since CL 615676 added omitzero option to encoding/json package, we can
just replace (*time.Time + omitempty) with (time.Time + omitzero).