Skip to content

Commit

Permalink
BUGFIX: The result of multi-module selection is inconsistent with the…
Browse files Browse the repository at this point in the history
… actual selection
  • Loading branch information
longforus committed May 18, 2019
1 parent bb9984f commit 728c387
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -45,8 +44,6 @@ public static AndroidFacet showDialogForFacets(Project project, List<AndroidFace
previousSelectedModule = Lists.newArrayList(DO_NOT_SELECT_THE_DEFAULT_MODULE);
}

Collections.sort(modules, (o1, o2) -> o1.getName().compareToIgnoreCase(o2.getName()));
Collections.sort(modulesName, String :: compareToIgnoreCase);
if (isSetDefault) {
modulesName.add(DO_NOT_SELECT_THE_DEFAULT_MODULE);
}
Expand Down
7 changes: 5 additions & 2 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<idea-plugin url="https://github.com/pbreault/adb-idea">
<id>com.developerphil.adbidea</id>
<name>ADB Idea</name>
<version>1.6.3</version>
<version>1.6.4</version>
<vendor url="https://github.com/longforus">Philippe Breault and Void Young</vendor>

<description><![CDATA[
Expand Down Expand Up @@ -34,7 +34,10 @@


<change-notes><![CDATA[
<b>1.6.3</b>
<b>1.6.4</b>
<ul>
<li> BUGFIX: The result of multi-module selection is inconsistent with the actual selection </li>
</ul><b>1.6.3</b>
<ul>
<li>update to origin : BUGFIX: Show all connected devices on Android Studio 3.4+</li>
</ul>
Expand Down

0 comments on commit 728c387

Please sign in to comment.