Skip to content

Commit 8f03b7e

Browse files
committed
Minor code style improvement
1 parent f5fd459 commit 8f03b7e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ project.ext.preDexLibs = !project.hasProperty('disablePreDex')
2424

2525
subprojects {
2626
project.plugins.whenPluginAdded { plugin ->
27-
if ("com.android.build.gradle.AppPlugin".equals(plugin.class.name)) {
27+
if ("com.android.build.gradle.AppPlugin" == plugin.class.name) {
2828
project.android.dexOptions.preDexLibraries = rootProject.ext.preDexLibs
29-
} else if ("com.android.build.gradle.LibraryPlugin".equals(plugin.class.name)) {
29+
} else if ("com.android.build.gradle.LibraryPlugin" == plugin.class.name) {
3030
project.android.dexOptions.preDexLibraries = rootProject.ext.preDexLibs
3131
}
3232
}

0 commit comments

Comments
 (0)