-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
[java] UnnecessaryImport false-positive on generic method call with on lambda #4816
Comments
Where can I add |
Thanks for reporting this issue. Yes, this seems to be a false positive. To add a suppression until this is fixed, you'll need to use the NOPMD comment, e.g. import java.util.TreeSet; // NOPMD false positive, see https://github.com/pmd/pmd/issues/4816 |
In the same project, I have another case of UnnecessaryImport false-positive. However, it is problematic to report as it triggers only in our CI, and not locally. The code looks more standard (i.e. not Lambda related, while many of many recent reports seems related to Lambda):
I would be happy to open a separate ticket, but the report would be awkward as I have no local reproduction scenario. I tried with |
@blacelle can you provide a little more context on that second scenario? You mention Also, can you please share how is the CI running PMD? This may be down to an incomplete auxclasspath. |
I'm sorry for the confusion @jsotuyod , this second issue happening in CI but not in local is not for
The single usage in given class looks like the provided piece of code:
I connected through ssh, and reproduced it with a simple CI:
Local:
CI libs:
Hope it helps. |
I have another CI-only false-positive:
while previous case was:
One (very weird, but still) pattern is given module fails with :
In the first module, both classes are similar, so it looked like chance. In the second case, the 2 classes are very different. Might be a red-herring. edit: I have a 3rd case of this issue, but with a single concerned class in the module. However, the same module as other (CI-only) false-positives like:
while given class (or the whole module) has no use of |
FYI I'll stop the migration of given (closed-source project from PMD I'll be happy to start it again with |
I found the issue with the first and probably second case: We couldn't figure out the exact method, that has been called ( For the other cases, I don't have enough information to reproduce the issue. I'd say, once #4840 is merged and delivered, please open a new issue, if you encounter more false positive with this rule. As for the false positives for the rule "ReplaceVectorWithList" please open another issue - this is a different rule so is off-topic for this issue. |
Any idea why it was happening only in CI ? It may help with the various CI
only issues.
…On Thu, Feb 29, 2024, 5:44 PM Juan Martín Sotuyo Dodero < ***@***.***> wrote:
Closed #4816 <#4816> as completed via
#4840 <#4840>.
—
Reply to this email directly, view it on GitHub
<#4816 (comment)>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAQFCF5DVLNXEYDDLH6XC5TYV4YDJAVCNFSM6AAAAABDETLW7OVHI2DSMVQWIX3LMV45UABCJFZXG5LFIV3GK3TUJZXXI2LGNFRWC5DJN5XDWMJRHE3DMMRUGIZDAMQ>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
@blacelle just to check here…
Which was it? using |
The command with I'm kind of astonished this is not related to lambda usage, as this (and other cases reported by myself) seemed related to lambda. |
The CI could use a different Java Version, if you are using maven, you could have different jar files laying around in your $HOME/.m2/repository, the different maven version could do slightly different dependency resolution resulting in a different classpaths. You should update your local environment to the exact versions of java (17.0.10) and maven (3.9.6) that the CI uses and start with a fresh local maven repository. Locally you are using MacOS, but the CI is running on Linux... |
Affects PMD Version:
7.0.0-rc4
Rule: UnnecessaryImport
Description:
I get multiple unexpected unused imports:
Code Sample demonstrating the issue:
Expected outcome:
PMD reports a violation at line ..., but that's wrong. That's a false positive.
Running PMD through: [CLI | Ant | Maven | Gradle | Designer | Other]
The text was updated successfully, but these errors were encountered: