Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public DartQuickAssistIntention(int index) {
}

@Override
public int compareTo(IntentionAction o) {
public int compareTo(final @NotNull IntentionAction o) {
if (o instanceof DartQuickAssistIntention other) {
return myIndex - other.myIndex;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public DartQuickFix(final @NotNull DartQuickFixSet quickFixSet, final int index)
}

@Override
public int compareTo(IntentionAction o) {
public int compareTo(final @NotNull IntentionAction o) {
if (o instanceof DartQuickFix) {
return myIndex - ((DartQuickFix)o).myIndex;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public DartSuppressAction(@NotNull String errorCode, boolean eolComment) {
}

@Override
public int compareTo(final IntentionAction o) {
public int compareTo(final @NotNull IntentionAction o) {
if (o instanceof DartSuppressAction) {
return ((DartSuppressAction)o).myEolComment ? -1 : 1;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public DartTestEventsConverter(final @NotNull String testFrameworkName,
}

@Override
protected boolean processServiceMessages(final String text, final Key outputType, final ServiceMessageVisitor visitor)
protected boolean processServiceMessages(final String text, final @NotNull Key outputType, final @NotNull ServiceMessageVisitor visitor)
throws ParseException {
LOG.debug("<<< " + text.trim());
myCurrentOutputType = outputType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public final class PubServerManager implements Disposable {

private String myServedSdkVersion;

private final LoadingCache<VirtualFile, PubServerService> myServedDirToPubService;
private final LoadingCache<@NotNull VirtualFile, PubServerService> myServedDirToPubService;

public static @NotNull PubServerManager getInstance(@NotNull Project project) {
return project.getService(PubServerManager.class);
Expand Down
Loading