-
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
Duplicate quick fixes when shown at line #1982
Conversation
test this please |
@rgrunber Could you, please, review it again? |
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.
Overall, I think the approach will work. Just a slight preference for having the de-duplication code be in the same spot.
org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/handlers/CodeActionHandler.java
Outdated
Show resolved
Hide resolved
@rgrunber I have updated the PR. |
org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/handlers/CodeActionHandler.java
Outdated
Show resolved
Hide resolved
test this please |
@rgrunber I have updated the PR. |
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.
Just one simplification I would make, and if it can be done, feel free to merge after.
Just noticed my inline comment never got posted :| One moment. |
String[] arguments; | ||
if (diagnostic.getData() instanceof JsonArray) { | ||
final JsonArray data = (JsonArray) diagnostic.getData(); | ||
arguments = new String[data.size()]; | ||
for (int j = 0; j < arguments.length; j++) { | ||
arguments[j] = data.get(j).getAsString(); | ||
} | ||
} else { | ||
arguments = new String[0]; | ||
} | ||
locations[i] = new ProblemLocationCore(start, end - start, problemId, arguments, isError, IJavaModelMarker.JAVA_MODEL_PROBLEM_MARKER); |
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.
Just the following change for slightly improved readability. It should be the same behaviour.
diff --git a/org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/handlers/CodeActionHandler.java b/org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/handlers/CodeActionHandler.java
index fd60ab29..f46e27be 100644
--- a/org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/handlers/CodeActionHandler.java
+++ b/org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/handlers/CodeActionHandler.java
@@ -63,6 +63,7 @@ import org.eclipse.lsp4j.WorkspaceEdit;
import org.eclipse.lsp4j.jsonrpc.messages.Either;
import com.google.gson.JsonArray;
+import com.google.gson.JsonElement;
public class CodeActionHandler {
public static final ResponseStore<Either<ChangeCorrectionProposal, CodeActionProposal>> codeActionStore
@@ -292,17 +293,14 @@ public class CodeActionHandler {
int end = DiagnosticsHelper.getEndOffset(unit, diagnostic.getRange());
boolean isError = diagnostic.getSeverity() == DiagnosticSeverity.Error;
int problemId = getProblemId(diagnostic);
- String[] arguments;
+ List<String> arguments = new ArrayList<>();
if (diagnostic.getData() instanceof JsonArray) {
final JsonArray data = (JsonArray) diagnostic.getData();
- arguments = new String[data.size()];
- for (int j = 0; j < arguments.length; j++) {
- arguments[j] = data.get(j).getAsString();
+ for (JsonElement e : data) {
+ arguments.add(e.getAsString());
}
- } else {
- arguments = new String[0];
}
- locations[i] = new ProblemLocationCore(start, end - start, problemId, arguments, isError, IJavaModelMarker.JAVA_MODEL_PROBLEM_MARKER);
+ locations[i] = new ProblemLocationCore(start, end - start, problemId, arguments.toArray(new String[0]), isError, IJavaModelMarker.JAVA_MODEL_PROBLEM_MARKER);
}
return locations;
}
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.
Fixed.
Signed-off-by: Snjezana Peco <snjezana.peco@redhat.com>
Fixes redhat-developer/vscode-java#2236
Signed-off-by: Snjezana Peco snjezana.peco@redhat.com