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

Refactor request: Remove unnecessary modifiers #260

Closed
wmjordan opened this issue Jan 26, 2018 · 2 comments
Closed

Refactor request: Remove unnecessary modifiers #260

wmjordan opened this issue Jan 26, 2018 · 2 comments

Comments

@wmjordan
Copy link

Given the following C# code:

internal class A {
    private int i;
}

Is it possible to provide a refactor to remove unnecessary modifiers so the code will look like this after refactoring?

class A {
    int i;
}
@josefpihrt
Copy link
Collaborator

You are asking for the opposite of RCS1018, right?

@wmjordan
Copy link
Author

Yep. Quite exactly.
Please provide a code fix for the refactor component.

@josefpihrt josefpihrt added this to the Unknown milestone Jun 11, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants