Skip to content

Commit

Permalink
Remove fastutil usages
Browse files Browse the repository at this point in the history
  • Loading branch information
Rongmario committed Feb 3, 2024
1 parent a7934a2 commit 0c318ee
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions src/main/java/zone/rong/mixinbooter/fix/MixinFixer.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package zone.rong.mixinbooter.fix;

import it.unimi.dsi.fastutil.objects.ObjectOpenHashSet;
import net.minecraft.launchwrapper.Launch;
import org.spongepowered.asm.mixin.extensibility.IMixinInfo;
import org.spongepowered.asm.mixin.transformer.ClassInfo;
Expand All @@ -17,7 +16,7 @@ public class MixinFixer {

static Unsafe unsafe;
static boolean registered = false;
static Set<String> queuedLateMixinConfigs = new ObjectOpenHashSet<>();
static Set<String> queuedLateMixinConfigs = new HashSet<>();

/**
* For internal usage
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
import org.spongepowered.asm.service.MixinService;
import org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper;
import zone.rong.mixinbooter.*;
import zone.rong.mixinbooter.decorator.FMLContextQuery;
import zone.rong.mixinbooter.fix.MixinFixer;

import java.lang.reflect.Field;
Expand Down

0 comments on commit 0c318ee

Please sign in to comment.