diff options
| author | Menny Even Danan <menny@evendanan.net> | 2020-03-16 03:14:18 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-16 03:14:18 +0000 |
| commit | 158a437d24a3dc0a6d2c0aa8fd287431a44ac612 (patch) | |
| tree | 1c4a4da204af1ff97ae767cb2bccf79507ce4ea1 /deployment/build.gradle | |
| parent | e581d7ae2cf6b4ca084ad963a10633b71659d884 (diff) | |
| download | AnySoftKeyboard-158a437d24a3dc0a6d2c0aa8fd287431a44ac612.tar.gz AnySoftKeyboard-158a437d24a3dc0a6d2c0aa8fd287431a44ac612.tar.bz2 | |
typo
Diffstat (limited to 'deployment/build.gradle')
| -rw-r--r-- | deployment/build.gradle | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/deployment/build.gradle b/deployment/build.gradle index 2221865c2..6632c3c74 100644 --- a/deployment/build.gradle +++ b/deployment/build.gradle @@ -78,10 +78,10 @@ tasks.register('deploymentRequestProcess').configure { if (!skipDeploymentReason.empty) { println(skipDeploymentReason); } else { - if (imeOnMasterPush == nulll) throw new NullPointerException("imeOnMasterPush") - if (addOnsOnMasterPush == nulll) throw new NullPointerException("addOnsOnMasterPush") - if (imePromoteMaster == nulll) throw new NullPointerException("imePromoteMaster") - if (addOnsPromoteMaster == nulll) throw new NullPointerException("addOnsPromoteMaster") + if (imeOnMasterPush == null) throw new NullPointerException("imeOnMasterPush") + if (addOnsOnMasterPush == null) throw new NullPointerException("addOnsOnMasterPush") + if (imePromoteMaster == null) throw new NullPointerException("imePromoteMaster") + if (addOnsPromoteMaster == null) throw new NullPointerException("addOnsPromoteMaster") if (ref != null && newDeploy != null) { def imeDeploy |
