Skip to content

Commit fa532d4

Browse files
committed
Removed redundant deleteAccounts method
Eliminated unused `deleteAccounts` method and corresponding import to streamline the `EconomyServiceWrapper` class.
1 parent 17a9b45 commit fa532d4

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

plugin/src/main/java/net/thenextlvl/service/wrapper/service/EconomyServiceWrapper.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
import org.jspecify.annotations.Nullable;
1313

1414
import java.util.Arrays;
15-
import java.util.List;
1615
import java.util.Optional;
1716
import java.util.Set;
1817
import java.util.UUID;
@@ -85,11 +84,6 @@ public CompletableFuture<Boolean> deleteAccount(UUID uuid, @Nullable World world
8584
return CompletableFuture.completedFuture(false);
8685
}
8786

88-
@Override
89-
public CompletableFuture<Boolean> deleteAccounts(List<UUID> accounts, @Nullable World world) {
90-
return CompletableFuture.completedFuture(false);
91-
}
92-
9387
@Override
9488
public boolean hasMultiWorldSupport() {
9589
return false;

0 commit comments

Comments
 (0)