1.23
This commit is contained in:
parent
8633b8e40d
commit
43fc609549
|
|
@ -9,7 +9,7 @@ plugins {
|
||||||
apply plugin: 'kotlin'
|
apply plugin: 'kotlin'
|
||||||
|
|
||||||
group 'io.izzel.taboolib'
|
group 'io.izzel.taboolib'
|
||||||
version '1.19'
|
version '1.23'
|
||||||
|
|
||||||
configurations {
|
configurations {
|
||||||
embed
|
embed
|
||||||
|
|
|
||||||
|
|
@ -29,6 +29,9 @@ 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') {
|
||||||
|
return internalName
|
||||||
|
}
|
||||||
def match = slash.find { internalName.startsWith(it.key) }
|
def match = slash.find { internalName.startsWith(it.key) }
|
||||||
if (match) {
|
if (match) {
|
||||||
return match.value + internalName.substring(match.key.length())
|
return match.value + internalName.substring(match.key.length())
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue