Fix keysAccessor by making it an interface.

This commit is contained in:
Username404-59 2021-04-08 20:12:54 +02:00
parent 48116b81fd
commit e39df66c13
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1

View File

@ -7,7 +7,7 @@ import org.spongepowered.asm.mixin.gen.Accessor;
import java.util.Map; import java.util.Map;
@Mixin(KeyMapping.class) @Mixin(KeyMapping.class)
public class keysAccessor { public interface keysAccessor {
@Accessor("CATEGORY_SORT_ORDER") @Accessor("CATEGORY_SORT_ORDER")
static Map<String, Integer> getSortedCategoryMap() { throw new AssertionError(); } static Map<String, Integer> getSortedCategoryMap() { throw new AssertionError(); }
} }