1.24
This commit is contained in:
parent
9c88efae69
commit
9dfb9d1876
|
|
@ -9,7 +9,7 @@ plugins {
|
||||||
apply plugin: 'kotlin'
|
apply plugin: 'kotlin'
|
||||||
|
|
||||||
group 'io.izzel.taboolib'
|
group 'io.izzel.taboolib'
|
||||||
version '1.23'
|
version '1.24'
|
||||||
|
|
||||||
configurations {
|
configurations {
|
||||||
embed
|
embed
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@ class RelocateRemapper extends Remapper {
|
||||||
if (remapper != null) {
|
if (remapper != null) {
|
||||||
use.computeIfAbsent(remapper.className) { new HashSet() }.add(internalName)
|
use.computeIfAbsent(remapper.className) { new HashSet() }.add(internalName)
|
||||||
}
|
}
|
||||||
if (internalName == 'kotlin.Metadata') {
|
if (internalName.startsWith('kotlin/Metadata')) {
|
||||||
return internalName
|
return internalName
|
||||||
}
|
}
|
||||||
def match = slash.find { internalName.startsWith(it.key) }
|
def match = slash.find { internalName.startsWith(it.key) }
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue