Skip to content

Commit e4f8c58

Browse files
committed
deoptimize due to issues in tests
1 parent bb89c19 commit e4f8c58

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/commonMain/kotlin/xyz/wagyourtail/unimined/mapping/resolver/MappingResolver.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,10 @@ abstract class MappingResolver<T : MappingResolver<T>>(val name: String) {
259259
toFill.add(entry.requires to targets)
260260
}
261261
}
262-
resolved!!.fillMissingNames(*toFill.toTypedArray())
262+
toFill.forEach {
263+
resolved!!.fillMissingNames(it)
264+
}
265+
// resolved!!.fillMissingNames(*toFill.toTypedArray())
263266
}.also {
264267
LOGGER.info { "Filled in missing names in $it" }
265268
}

0 commit comments

Comments
 (0)