-
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
Create cleanup actions for some existing quick assists. #2350
Conversation
63a2ee2
to
200b83f
Compare
...e.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/cleanup/PatternMatchingForInstanceof.java
Outdated
Show resolved
Hide resolved
org.eclipse.jdt.ls.tests/src/org/eclipse/jdt/ls/core/internal/cleanup/CleanUpsTest.java
Outdated
Show resolved
Hide resolved
200b83f
to
f02edd9
Compare
org.eclipse.jdt.ls.tests/src/org/eclipse/jdt/ls/core/internal/cleanup/CleanUpsTest.java
Outdated
Show resolved
Hide resolved
f02edd9
to
38618f7
Compare
If I use package org.acme;
import java.io.File;
import java.io.FileFilter;
import java.util.Arrays;
public class RolandsTest {
public void test() {
String PATH = "/this/is/some/path";
String MESSAGE = """
This is a message.\
This message has multiple lines.\
We can convert it to a text block""";
final Object[] obj = Arrays.asList(PATH).toArray();
if (obj[0] instanceof String) {
String tmp = (String) obj[0];
File f = new File(tmp);
File[] filtered = f.listFiles(new FileFilter() {
@Override
public boolean accept(File path) {
return true;
}
});
}
}
}; with "java.cleanup.actionsOnSave": [
"addOverride",
"stringConcatToTextBlock",
"invertEquals",
"addFinalModifier",
"lambdaExpression",
], I get an NPE |
38618f7
to
46e5979
Compare
Thanks. It's reproducible in the tests as well. I forgot I changed the API of the cleanup retrieval to return Also need to update the original tests to compare content. |
org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/cleanup/CleanUpRegistry.java
Outdated
Show resolved
Hide resolved
1e87984
to
1edeb06
Compare
Also, if we ever need to implement a proper |
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.
Works very well!
org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/cleanup/CleanUpUtils.java
Outdated
Show resolved
Hide resolved
...clipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/cleanup/LambdaExpressionCleanup.java
Show resolved
Hide resolved
- Add final modifier where possible - Convert switch statement to switch expression - Use pattern matching for instanceof checks - Convert anonymous class creation to lambda expression - Add test cases, and set CleanUpsTest compliance to 19 - Adjust existing tests to make assertions based on content - Due to LSP limitations (no overlapping text edits), we now return the final state of the document after all cleanups are applied as a text edit Signed-off-by: Roland Grunberg <rgrunber@redhat.com>
1edeb06
to
66c0e25
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.
Looks good to me. Thanks, Roland!
Signed-off-by: Roland Grunberg rgrunber@redhat.com