-
-
Notifications
You must be signed in to change notification settings - Fork 735
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
Implement copying #311
Implement copying #311
Conversation
grantland
commented
Dec 18, 2015
- ParseQuery
- ParseACL
- ParseGeoPoint
- ParsePush
By analyzing the blame information on this pull request, we identified @grantland to be a potential reviewer. |
@grantland updated the pull request. |
1 similar comment
@grantland updated the pull request. |
@grantland updated the pull request. |
* @param acl | ||
* The acl to copy. | ||
*/ | ||
public ParseACL(ParseACL acl) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this is a public API, do we need to add null checking here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It implicitly NPE on the next line, which I think is fine since Java APIs work similarly: https://android.googlesource.com/platform/libcore/+/refs/heads/master/luni/src/main/java/java/util/HashMap.java#194
one question, others LGTM! |
* ParseQuery * ParseGeoPoint * ParseACL * ParsePush
5589f17
to
a1ab2eb
Compare
@grantland updated the pull request. |