Skip to content

Commit

Permalink
removed temp try catch block
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Sep 2, 2023
1 parent 11fb432 commit 185820c
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,7 @@ public AntimatterTagProvider(Registry<T> registry, String providerDomain, String
public void run() {
Map<ResourceLocation, AntimatterTagBuilder<T>> b = new HashMap<>(this.builders);
this.builders.clear();
try {
processTags(providerDomain);
} catch (NoSuchMethodError ignored){
}
processTags(providerDomain);
builders.forEach(this::addTag);
builders.forEach((r, builder) -> {
if (builder.removeElements.isEmpty()) return;
Expand Down

0 comments on commit 185820c

Please sign in to comment.