formatting

This commit is contained in:
Martin Lippert
2023-07-26 13:55:08 +02:00
parent 575cd22b68
commit 82d8f49a7a

View File

@@ -26,9 +26,11 @@ import com.google.common.collect.ImmutableList;
public class Quickfix<T> {
public static class QuickfixData<T> {
public final QuickfixType type;
public final T params;
public final String title;
public QuickfixData(QuickfixType type, T params, String title) {
super();
this.type = type;
@@ -43,7 +45,6 @@ public class Quickfix<T> {
private final String diagMsg;
private final QuickfixData<T> data;
public Quickfix(String CODE_ACTION_CMD_ID, Diagnostic diag, QuickfixData<T> data) {
super();
this.CODE_ACTION_CMD_ID = CODE_ACTION_CMD_ID;