Skip to content
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

zapcore.Level: Move MarshalText to value receiver #414

Merged
merged 1 commit into from
Apr 21, 2017
Merged

Conversation

prashantv
Copy link
Collaborator

Currently, MarshalText and UnmarshalText are both using pointer
receivers but only UnmarshalText needs a pointer receiver since it
mutates the underlying value.

MarshalText should be on the same receiver type as String. On the other
hand, UnmarshalText requires a pointer receiver, and it can handle the
case where we try to unmarshal to a nil pointer.

cc @ZymoticB

Currently, MarshalText and UnmarshalText are both using pointer
receivers but only UnmarshalText needs a pointer receiver since it
mutates the underlying value.

MarshalText should be on the same receiver type as String. On the other
hand, UnmarshalText requires a pointer receiver, and it can handle the
case where we try to unmarshal to a nil pointer.
@akshayjshah akshayjshah merged commit 47cfaea into master Apr 21, 2017
@prashantv prashantv deleted the level_value branch April 22, 2017 00:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants