-
Notifications
You must be signed in to change notification settings - Fork 49
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
Unused import not reported #19
Comments
Thanks for the report, I'll look into it tonight. |
jeremymailen
pushed a commit
that referenced
this issue
Sep 29, 2017
Fixes #19 Also upgrade kotlin and gradle
Thank you for reporting the bug. You've discovered a subtle issue which probably resulted in a number of missed lint errors. I'll push a fixed 1.3.2 in a moment. |
Thanks for the fix. Great work! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Given the following configuration:
https://gist.github.com/schmist/c4c205bde4bb2b085e71688c3ef10d83
import java.util.Date
inMain.kt
is not recognized as an unused import as long as it is used in classL
. Renaming classL
toN
(so that it appears alphabetically after fileMain.kt
) fixes the issue.The text was updated successfully, but these errors were encountered: