-
Notifications
You must be signed in to change notification settings - Fork 413
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
Add setting for clean ups to be applied upon document save #2298
Add setting for clean ups to be applied upon document save #2298
Conversation
Can one of the admins verify this patch? |
d15eab9
to
a69f1b5
Compare
So all we have to do on the client side is set I think I like this approach. It's basically what |
a56a3a0
to
24643c2
Compare
Some things I've run into:
|
24643c2
to
d88c764
Compare
- Add documentation (accessible through a command) for what each clean up does Depends on eclipse-jdtls/eclipse.jdt.ls#2298 Closes redhat-developer#2144 Signed-off-by: David Thompson <davthomp@redhat.com>
d88c764
to
b91e9d8
Compare
- Add documentation (accessible through a command) for what each clean up does Depends on eclipse-jdtls/eclipse.jdt.ls#2298 Closes redhat-developer#2144 Signed-off-by: David Thompson <davthomp@redhat.com>
- Add documentation (accessible through a command) for what each clean up does Depends on eclipse-jdtls/eclipse.jdt.ls#2298 Closes redhat-developer#2144 Signed-off-by: David Thompson <davthomp@redhat.com>
b91e9d8
to
94cfb43
Compare
- Add documentation (accessible through a command) for what each clean up does Depends on eclipse-jdtls/eclipse.jdt.ls#2298 Closes redhat-developer#2144 Signed-off-by: David Thompson <davthomp@redhat.com>
- Add documentation (accessible through a command) for what each clean up does Depends on eclipse-jdtls/eclipse.jdt.ls#2298 Closes redhat-developer#2144 Signed-off-by: David Thompson <davthomp@redhat.com>
org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/preferences/Preferences.java
Outdated
Show resolved
Hide resolved
...jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/cleanup/AddDeprecatedAnnotationCleanUp.java
Outdated
Show resolved
Hide resolved
org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/cleanup/INoConfigCleanUp.java
Outdated
Show resolved
Hide resolved
How difficult would it be to set the corresponding problem to warning/error that needs to be enabled in order to permit the cleanup to activate ? I'm considering either that or we just stick to cleanups that don't rely on error markers at all. |
I tried to get it to enable the required problems for just when applying the clean up, so that we don't need to change any of the project configuration on disk, but I got stuck. I can try again. I could also look into enabling those warnings when importing a non Eclipse project if that's a good enough solution. |
86d9614
to
5345c10
Compare
- Add documentation (accessible through a command) for what each clean up does Depends on eclipse-jdtls/eclipse.jdt.ls#2298 Closes redhat-developer#2144 Signed-off-by: David Thompson <davthomp@redhat.com>
5345c10
to
b2d7e3a
Compare
I'm in the process of making a change where JDT.LS will update the preferences before applying a cleanup that requires a compiler warning to be enabled, but have also found a few bugs in the process. Specifically:
|
b2d7e3a
to
083f738
Compare
org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/cleanup/CleanUpUtils.java
Outdated
Show resolved
Hide resolved
083f738
to
90d1352
Compare
90d1352
to
1df018f
Compare
} | ||
|
||
// build the context after setting the compiler options so that the built AST has all the required markers | ||
CleanUpContextCore context = CleanUpUtils.getCleanUpContext(textDocumentId, opts, monitor); |
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.
If possible, we should only get to this stage (parsing the AST), if we know there's cleanups to apply. So if the list is empty, maybe we exit earlier (or return empty ? )
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.
Good catch. I'll fix this soon. I also ran into an issue with how we were handling spaces vs tabs that I'll address
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.
I've gotten no where with the spaces vs tabs issue I ran into so I'll push my fix for this.
1df018f
to
a62bb8a
Compare
Sometimes when I save, spaces are used instead of tabs in the clean ups, despite setting up an "[java]": {
"editor.insertSpaces": false,
"editor.tabSize": 4
}, in the vscode settings |
org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/cleanup/CleanUpRegistry.java
Outdated
Show resolved
Hide resolved
a62bb8a
to
f917d15
Compare
- Add documentation (accessible through a command) for what each clean up does Depends on eclipse-jdtls/eclipse.jdt.ls#2298 Closes redhat-developer#2144 Signed-off-by: David Thompson <davthomp@redhat.com>
org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/cleanup/CleanUpUtils.java
Outdated
Show resolved
Hide resolved
- Add documentation (accessible through a command) for what each clean up does Depends on eclipse-jdtls/eclipse.jdt.ls#2298 Closes redhat-developer#2144 Signed-off-by: David Thompson <davthomp@redhat.com>
3a6630f
to
842676d
Compare
- Add new setting `java.cleanups.enabled` to list which clean ups to run - Add clean up to prefix all member accesses with `this` - Add clean up to prefix all static member accesses with class name - Add clean up to insert missing `@Override` - Add clean up to insert missing `@Deprecated` See redhat-developer/vscode-java#2144 Signed-off-by: David Thompson <davthomp@redhat.com>
842676d
to
66b4f4e
Compare
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.
Change looks good to me. The setting defaults to empty for now but perhaps in the future we can impose some nice defaults.
Maybe in the future we even automatically apply some based on the detected project source level.
ok to test. |
test this please. |
- Add documentation (accessible through a command) for what each clean up does Depends on eclipse-jdtls/eclipse.jdt.ls#2298 Closes redhat-developer#2144 Signed-off-by: David Thompson <davthomp@redhat.com>
- Add documentation (accessible through a command) for what each clean up does Depends on eclipse-jdtls/eclipse.jdt.ls#2298 Closes #2144 Signed-off-by: David Thompson <davthomp@redhat.com>
java.cleanup.actionsOnSave
to list which clean ups to runthis
@Override
@Deprecated
See redhat-developer/vscode-java#2144
Signed-off-by: David Thompson davthomp@redhat.com