mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
[inspections] Rename OptSet -> OptStringList; stringSet -> stringList
This reflects that we usually preserve ordering and in fact map to the List<String> GitOrigin-RevId: f44eb3efae5db372dfb1747d86b728a23ec5745b
This commit is contained in:
committed by
intellij-monorepo-bot
parent
35c501455e
commit
56013717c5
@@ -45,7 +45,6 @@ import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
import static com.intellij.codeInspection.options.OptPane.pane;
|
||||
import static com.intellij.codeInspection.options.OptPane.stringSet;
|
||||
|
||||
/**
|
||||
* User: catherine
|
||||
@@ -142,6 +141,6 @@ public class RestRoleInspection extends RestInspection {
|
||||
|
||||
@Override
|
||||
public @NotNull OptPane getOptionsPane() {
|
||||
return pane(stringSet("ignoredRoles", PythonRestBundle.message("python.rest.inspections.role.ignore.roles.label")));
|
||||
return pane(OptPane.stringList("ignoredRoles", PythonRestBundle.message("python.rest.inspections.role.ignore.roles.label")));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user