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

Duplicate quick fixes when shown at line #1982

Merged
merged 1 commit into from
Jan 14, 2022

Conversation

snjeza
Copy link
Contributor

@snjeza snjeza commented Dec 23, 2021

Fixes redhat-developer/vscode-java#2236

Signed-off-by: Snjezana Peco snjezana.peco@redhat.com

@rgrunber
Copy link
Contributor

This is what I'm seeing with this PR.

pr-1982

@snjeza
Copy link
Contributor Author

snjeza commented Jan 10, 2022

test this please

@snjeza
Copy link
Contributor Author

snjeza commented Jan 10, 2022

This is what I'm seeing with this PR.

@rgrunber Could you, please, review it again?

Copy link
Contributor

@rgrunber rgrunber left a 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.

@snjeza
Copy link
Contributor Author

snjeza commented Jan 11, 2022

@rgrunber I have updated the PR.

@snjeza
Copy link
Contributor Author

snjeza commented Jan 13, 2022

test this please

@snjeza
Copy link
Contributor Author

snjeza commented Jan 13, 2022

@rgrunber I have updated the PR.

Copy link
Contributor

@rgrunber rgrunber left a 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.

@rgrunber
Copy link
Contributor

Just noticed my inline comment never got posted :| One moment.

Comment on lines 295 to 305
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);
Copy link
Contributor

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;
 	}

Copy link
Contributor Author

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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Duplicate quick fixes when shown at line
2 participants