Compare commits

..

No commits in common. "master" and "1.25" have entirely different histories.
master ... 1.25

3 changed files with 3 additions and 8 deletions

View File

@ -9,7 +9,7 @@ plugins {
apply plugin: 'kotlin'
group 'io.izzel.taboolib'
version '1.27'
version '1.25'
configurations {
embed

View File

@ -23,10 +23,5 @@ class Links {
this.url = url
return this
}
@Override
String toString() {
return url
}
}
}

View File

@ -106,7 +106,7 @@ class OptimizeFileReader(project: Project, input: InputStream) {
if (member.any { name.startsWith(it) }) {
if (depend != null) {
val fail = depend.name.any { n ->
val set = use[n]?.toMutableList() ?: ArrayList()
val set = use[n]!!.toMutableList()
set.remove(n)
set.removeAll(depend.exclude)
set.isNotEmpty()
@ -116,7 +116,7 @@ class OptimizeFileReader(project: Project, input: InputStream) {
}
}
for (s in check) {
val set = use[s]?.toMutableList() ?: ArrayList()
val set = use[s]!!.toMutableList()
set.remove(s)
set.removeAll(check)
set.removeAll(member)