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