Class SpigotMappingsMerger

java.lang.Object
fr.skytasul.reflection.shrieker.minecraft.SpigotMappingsMerger

public final class SpigotMappingsMerger extends Object
  • Method Summary

    Modifier and Type
    Method
    Description
    static @NotNull fr.skytasul.reflection.mappings.Mappings
    merge(@NotNull fr.skytasul.reflection.mappings.Mappings classMappings, @NotNull fr.skytasul.reflection.mappings.Mappings membersMappings)
    Merges:

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Method Details

    • merge

      @NotNull public static @NotNull fr.skytasul.reflection.mappings.Mappings merge(@NotNull @NotNull fr.skytasul.reflection.mappings.Mappings classMappings, @NotNull @NotNull fr.skytasul.reflection.mappings.Mappings membersMappings)
      Merges:
       Class mapping:
         a -> net.minecraft.SomeClass
         b -> net.minecraft.AnotherClass
       Members mapping:
         net.minecraft.SomeClass.z(net.minecraft.AnotherClass) -> someMethod
       To:
         a -> net.minecraft.SomeClass:
           z(b) -> someMethod
         b -> net.minecraft.AnotherClass
       
      Parameters:
      classMappings -
      membersMappings -
      Returns: