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