mirror of
https://github.com/architectury/architectury-loom.git
synced 2026-03-31 05:15:57 -05:00
Fix another little oopsie
This commit is contained in:
@@ -218,7 +218,7 @@ public final class SrgMerger {
|
||||
|
||||
MappingTree.MethodMapping method = CollectionUtil.find(
|
||||
klass.getMethods(),
|
||||
m -> m.getName("official").equals(def.getSrcName()) && m.getDesc("official").equals(def.getSrcDesc())
|
||||
m -> m.getSrcName().equals(def.getName("official")) && m.getSrcDesc().equals(def.getDesc("official"))
|
||||
).orElse(null);
|
||||
|
||||
if (method == null) {
|
||||
|
||||
Reference in New Issue
Block a user