summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Fietz <martin.fietz@gmail.com>2018-01-14 17:55:51 +0100
committerMartin Fietz <martin.fietz@gmail.com>2018-01-14 17:55:51 +0100
commitf8d1f32e9b740429a9db66716f0950670c2ea8f6 (patch)
treeeb2088646c4a89a30298a32ab91986d4e3a0b8e8
parentbf41f1713de55cc6db23a5e745de6a8040862988 (diff)
downloadAntennaPod-f8d1f32e9b740429a9db66716f0950670c2ea8f6.zip
Replace equals with operator
-rw-r--r--build.gradle4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle
index 68074e679..70f377975 100644
--- a/build.gradle
+++ b/build.gradle
@@ -28,9 +28,9 @@ project.ext.preDexLibs = !project.hasProperty("disablePreDex")
subprojects {
project.plugins.whenPluginAdded { plugin ->
- if ("com.android.build.gradle.AppPlugin".equals(plugin.class.name)) {
+ if ("com.android.build.gradle.AppPlugin" == plugin.class.name) {
project.android.dexOptions.preDexLibraries = rootProject.ext.preDexLibs
- } else if ("com.android.build.gradle.LibraryPlugin".equals(plugin.class.name)) {
+ } else if ("com.android.build.gradle.LibraryPlugin" == plugin.class.name) {
project.android.dexOptions.preDexLibraries = rootProject.ext.preDexLibs
}
}