-
Notifications
You must be signed in to change notification settings - Fork 118
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
refactor: Refactor data scratch-device model #1834
Conversation
CLA Assistant Lite bot All contributors have signed the CLA ✍️ ✅ |
344d0bb
to
9bfcdcb
Compare
Timestamp: 2021-04-22 15:40:28 |
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.
- Code looks good
- All test pass
👍
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 looks good. Just a simply naming change. It might not even be necessary.
} | ||
|
||
internal fun List<IosModel>.toIosApiModel(): List<DeviceModel.Ios> = map { googleiOSModel -> | ||
DeviceModel.Ios( |
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 capitialization of iOS is always a strange one to me. should it be?
DeviceModel.Ios( | |
DeviceModel.IOS( |
or
DeviceModel.Ios( | |
DeviceModel.iOS( |
or just leave it is as it is ?
Fixes #1745
Test Plan
android models describe
ios models describe
android models list
ios models describe
Checklist