formatting
This commit is contained in:
@@ -26,9 +26,11 @@ import com.google.common.collect.ImmutableList;
|
|||||||
public class Quickfix<T> {
|
public class Quickfix<T> {
|
||||||
|
|
||||||
public static class QuickfixData<T> {
|
public static class QuickfixData<T> {
|
||||||
|
|
||||||
public final QuickfixType type;
|
public final QuickfixType type;
|
||||||
public final T params;
|
public final T params;
|
||||||
public final String title;
|
public final String title;
|
||||||
|
|
||||||
public QuickfixData(QuickfixType type, T params, String title) {
|
public QuickfixData(QuickfixType type, T params, String title) {
|
||||||
super();
|
super();
|
||||||
this.type = type;
|
this.type = type;
|
||||||
@@ -43,7 +45,6 @@ public class Quickfix<T> {
|
|||||||
private final String diagMsg;
|
private final String diagMsg;
|
||||||
private final QuickfixData<T> data;
|
private final QuickfixData<T> data;
|
||||||
|
|
||||||
|
|
||||||
public Quickfix(String CODE_ACTION_CMD_ID, Diagnostic diag, QuickfixData<T> data) {
|
public Quickfix(String CODE_ACTION_CMD_ID, Diagnostic diag, QuickfixData<T> data) {
|
||||||
super();
|
super();
|
||||||
this.CODE_ACTION_CMD_ID = CODE_ACTION_CMD_ID;
|
this.CODE_ACTION_CMD_ID = CODE_ACTION_CMD_ID;
|
||||||
|
|||||||
Reference in New Issue
Block a user