Skip to content
Open
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
3 changes: 2 additions & 1 deletion src/io/flutter/actions/FlutterRetargetAppAction.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import com.intellij.openapi.project.DumbAwareAction;
import com.intellij.openapi.project.Project;
import io.flutter.utils.FlutterModuleUtils;
import com.intellij.util.SmartList;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

Expand All @@ -28,7 +29,7 @@ public abstract class FlutterRetargetAppAction extends DumbAwareAction {
private final String myActionId;

@NotNull
private final List<String> myPlaces = new ArrayList<>();
private final List<String> myPlaces = new SmartList<>();

FlutterRetargetAppAction(@NotNull String actionId,
@Nullable String text,
Expand Down
Loading