-
Notifications
You must be signed in to change notification settings - Fork 624
Make FieldValue a test-only class #1208
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
Merged
schmidt-sebastian
merged 30 commits into
mrschmidt/rewritefieldvalue
from
mrschmidt/dropall
Feb 6, 2020
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
1602062
Protobuf-backed FieldValues
schmidt-sebastian 804a1b7
Merge branch 'mrschmidt/rewritefieldvalue' into mrschmidt/final
schmidt-sebastian 3d5d7c2
Merge branch 'mrschmidt/rewritefieldvalue' into mrschmidt/final
schmidt-sebastian 120ca33
Feedback
schmidt-sebastian 82c0095
Update test-only variable
schmidt-sebastian 98953a3
Add ProtoValues.contains()
schmidt-sebastian 940a268
Migrate ArrayTransforms to use Values
schmidt-sebastian 7ea5b37
Migrate TransformResult to use Value
schmidt-sebastian 637838b
Drop Array, Reference, Number, Integer and DoubleValue
schmidt-sebastian 522db2f
Drop remaining primitive FieldValue types
schmidt-sebastian b5cc998
Fix Kotlin
schmidt-sebastian 9f87db1
Merge branch 'mrschmidt/droparray' into mrschmidt/droprest
schmidt-sebastian 162f071
More Kotlin fixes
schmidt-sebastian 3d2eadd
Merge branch 'mrschmidt/droparray' into mrschmidt/droprest
schmidt-sebastian 13e01c8
Review
schmidt-sebastian baf650e
Merge branch 'mrschmidt/rewritefieldvalue' into mrschmidt/final
schmidt-sebastian aa7b3ec
Merge branch 'mrschmidt/final' into mrschmidt/migratevalues
schmidt-sebastian 774598a
Feedback
schmidt-sebastian 490c924
Make FieldValue package-private
schmidt-sebastian 0abdfb1
Merge branch 'mrschmidt/migratevalues' into mrschmidt/droparray
schmidt-sebastian 6ef7289
Merge
schmidt-sebastian 903a777
Make FieldValue a test-only class
schmidt-sebastian 3f2efb4
Merge
schmidt-sebastian 067c43e
Merge
schmidt-sebastian 585ce2a
Review
schmidt-sebastian 4669589
Update ObjectValue.java
schmidt-sebastian 9ab4f2c
Fix Kotlin
schmidt-sebastian 2ce8a22
Fix Kotlin
schmidt-sebastian 666458a
Merge branch 'mrschmidt/droprest' into mrschmidt/dropall
schmidt-sebastian 739e646
Merge
schmidt-sebastian File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I'm surprised this works. Is the only usage of this in
UserDataWriter
?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.
The class is only used in
UserDataWriter
andProtoValues
.isServerTimestamp()
is used in a couple other places.