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