From 728c3877c7bd40901b284f282ff9ff97fd2fb7ff Mon Sep 17 00:00:00 2001 From: longforus Date: Sat, 18 May 2019 10:01:46 +0800 Subject: [PATCH] BUGFIX: The result of multi-module selection is inconsistent with the actual selection --- .../adbidea/ui/ModuleChooserDialogHelper.java | 3 --- src/main/resources/META-INF/plugin.xml | 7 +++++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/com/developerphil/adbidea/ui/ModuleChooserDialogHelper.java b/src/main/java/com/developerphil/adbidea/ui/ModuleChooserDialogHelper.java index d501c85..620bfa1 100644 --- a/src/main/java/com/developerphil/adbidea/ui/ModuleChooserDialogHelper.java +++ b/src/main/java/com/developerphil/adbidea/ui/ModuleChooserDialogHelper.java @@ -5,7 +5,6 @@ import com.intellij.openapi.module.Module; import com.intellij.openapi.module.ModuleType; import com.intellij.openapi.project.Project; -import java.util.Collections; import java.util.List; import org.jetbrains.android.facet.AndroidFacet; @@ -45,8 +44,6 @@ public static AndroidFacet showDialogForFacets(Project project, List o1.getName().compareToIgnoreCase(o2.getName())); - Collections.sort(modulesName, String :: compareToIgnoreCase); if (isSetDefault) { modulesName.add(DO_NOT_SELECT_THE_DEFAULT_MODULE); } diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index b92f728..7a207b8 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -1,7 +1,7 @@ com.developerphil.adbidea ADB Idea - 1.6.3 + 1.6.4 Philippe Breault and Void Young 1.6.3 + 1.6.4 +
    +
  • BUGFIX: The result of multi-module selection is inconsistent with the actual selection
  • +
1.6.3
  • update to origin : BUGFIX: Show all connected devices on Android Studio 3.4+