mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-01-08 20:09:36 +01:00
Fix typos.
This commit is contained in:
parent
b6f4b647d6
commit
5d2cd49139
@ -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")) {
|
||||
|
Loading…
Reference in New Issue
Block a user