This commit is contained in:
坏黑 2021-08-23 14:26:01 +08:00
parent 9c88efae69
commit 9dfb9d1876
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -29,7 +29,7 @@ class RelocateRemapper extends Remapper {
if (remapper != null) {
use.computeIfAbsent(remapper.className) { new HashSet() }.add(internalName)
}
if (internalName == 'kotlin.Metadata') {
if (internalName.startsWith('kotlin/Metadata')) {
return internalName
}
def match = slash.find { internalName.startsWith(it.key) }