-
Notifications
You must be signed in to change notification settings - Fork 1.3k
chore : Lint fix #5995
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
chore : Lint fix #5995
Conversation
- Using 'Log' instead of 'Timber' - Line is longer than allowed by code style (> 100 columns) - Use of getter method instead of property access syntax - Should be replaced with Kotlin function - Cascade 'if' should be replaced with 'when'
val sourceExif = imageUri.toUri().path?.let { ExifInterface(it) } | ||
// TODO(Deprecation : 'TAG_APERTURE: String' is deprecated. Deprecated in Java) |
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.
For Maintainers : should we create separate issue for this referencing deprecation for it and comment issue 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.
Yes thanks! 🙂
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.
Added.
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.
Tested with a picture I had to rotate: https://commons.wikimedia.org/wiki/File:Fancy_dresses_in_Paris.jpg
Worked well.
Thanks! :-)
Thanks @neeldoshii ! |
Fixes