-
Notifications
You must be signed in to change notification settings - Fork 87
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
Add realm specific implementation for List.add and List.insert #894
Conversation
Pull Request Test Coverage Report for Build 3023652286
💛 - Coveralls |
Pull Request Test Coverage Report for Build 3036265550
💛 - Coveralls |
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 think we should add a test for the removeRange
path of length setter
I have added the requested test |
@@ -63,7 +63,11 @@ class ManagedRealmList<T extends Object?> extends collection.ListBase<T> with Re | |||
@override |
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.
@override | |
/// Setting the `length` is a required method on [List], but makes less sense | |
/// for [RealmList]s. You can only decrease the length, increasing it throws an [RealmException]. |
No description provided.