diff --git a/common/src/main/java/com/viaversion/viaversion/util/SetWrapper.java b/common/src/main/java/com/viaversion/viaversion/util/SetWrapper.java
deleted file mode 100644
index b95bb6122..000000000
--- a/common/src/main/java/com/viaversion/viaversion/util/SetWrapper.java
+++ /dev/null
@@ -1,60 +0,0 @@
-/*
- * This file is part of ViaVersion - https://github.com/ViaVersion/ViaVersion
- * Copyright (C) 2016-2024 ViaVersion and contributors
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see .
- */
-package com.viaversion.viaversion.util;
-
-import com.google.common.collect.ForwardingSet;
-import java.util.Collection;
-import java.util.Set;
-import java.util.function.Consumer;
-import org.checkerframework.checker.nullness.qual.NonNull;
-
-public class SetWrapper extends ForwardingSet {
-
- private final Set set;
- private final Consumer addListener;
-
- public SetWrapper(Set set, Consumer addListener) {
- this.set = set;
- this.addListener = addListener;
- }
-
- @Override
- public boolean add(@NonNull E element) {
- addListener.accept(element);
-
- return super.add(element);
- }
-
- @Override
- public boolean addAll(Collection extends E> collection) {
- for (E element : collection) {
- addListener.accept(element);
- }
-
- return super.addAll(collection);
- }
-
- @Override
- protected Set delegate() {
- return originalSet();
- }
-
- public Set originalSet() {
- return this.set;
- }
-}