Fix typos.

This commit is contained in:
Relintai 2023-01-16 00:54:48 +01:00
parent b6f4b647d6
commit 5d2cd49139

View File

@ -150,7 +150,7 @@ ext.getExportEnabledABIs = { ->
if (enabledABIs == null || enabledABIs.isEmpty()) { if (enabledABIs == null || enabledABIs.isEmpty()) {
enabledABIs = "armeabi-v7a|arm64-v8a|x86|x86_64|" enabledABIs = "armeabi-v7a|arm64-v8a|x86|x86_64|"
} }
RBSet<String> exportAbiFilter = []; Set<String> exportAbiFilter = [];
for (String abi_name : enabledABIs.split(VALUE_SEPARATOR_REGEX)) { for (String abi_name : enabledABIs.split(VALUE_SEPARATOR_REGEX)) {
if (!abi_name.trim().isEmpty()){ if (!abi_name.trim().isEmpty()){
exportAbiFilter.add(abi_name); exportAbiFilter.add(abi_name);
@ -180,7 +180,7 @@ ext.getExportFilename = {
* of maven repos. * of maven repos.
*/ */
ext.getPandemoniumPluginsMavenRepos = { -> ext.getPandemoniumPluginsMavenRepos = { ->
RBSet<String> mavenRepos = [] Set<String> mavenRepos = []
// Retrieve the list of maven repos. // Retrieve the list of maven repos.
if (project.hasProperty("plugins_maven_repos")) { if (project.hasProperty("plugins_maven_repos")) {
@ -200,7 +200,7 @@ ext.getPandemoniumPluginsMavenRepos = { ->
* it for inclusion in the build dependencies. * it for inclusion in the build dependencies.
*/ */
ext.getPandemoniumPluginsRemoteBinaries = { -> ext.getPandemoniumPluginsRemoteBinaries = { ->
RBSet<String> remoteDeps = [] Set<String> remoteDeps = []
// Retrieve the list of remote plugins binaries. // Retrieve the list of remote plugins binaries.
if (project.hasProperty("plugins_remote_binaries")) { if (project.hasProperty("plugins_remote_binaries")) {
@ -219,7 +219,7 @@ ext.getPandemoniumPluginsRemoteBinaries = { ->
* their binaries for inclusion in the build dependencies. * their binaries for inclusion in the build dependencies.
*/ */
ext.getPandemoniumPluginsLocalBinaries = { -> ext.getPandemoniumPluginsLocalBinaries = { ->
RBSet<String> binDeps = [] Set<String> binDeps = []
// Retrieve the list of local plugins binaries. // Retrieve the list of local plugins binaries.
if (project.hasProperty("plugins_local_binaries")) { if (project.hasProperty("plugins_local_binaries")) {