mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
temp allow childrenToArray in non-EDT
This commit is contained in:
@@ -754,7 +754,7 @@ public final class TreeUtil {
|
||||
|
||||
@NotNull
|
||||
public static ArrayList<TreeNode> childrenToArray(@NotNull final TreeNode node) {
|
||||
ApplicationManager.getApplication().assertIsDispatchThread();
|
||||
//ApplicationManager.getApplication().assertIsDispatchThread();
|
||||
final ArrayList<TreeNode> result = new ArrayList<TreeNode>();
|
||||
for(int i = 0; i < node.getChildCount(); i++){
|
||||
TreeNode child = node.getChildAt(i);
|
||||
|
||||
Reference in New Issue
Block a user