Skip to content
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

RemoveUnusedPrivateMethods should remove unused imports #347

Closed
blipper opened this issue Oct 1, 2024 · 0 comments
Closed

RemoveUnusedPrivateMethods should remove unused imports #347

blipper opened this issue Oct 1, 2024 · 0 comments
Assignees
Labels
bug Something isn't working good first issue Good for newcomers

Comments

@blipper
Copy link
Contributor

blipper commented Oct 1, 2024

What is the smallest, simplest way to reproduce the problem?

import toy.MyClass;
class A {
    private void foo() {
        new MyClass();
    }
}

What did you expect to see?

class A {
}

What did you see instead?

import toy.MyClass;
class A {
}
@blipper blipper added the bug Something isn't working label Oct 1, 2024
@timtebeek timtebeek added the good first issue Good for newcomers label Oct 6, 2024
@timtebeek timtebeek self-assigned this Oct 6, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working good first issue Good for newcomers
Projects
Archived in project
Development

No branches or pull requests

2 participants