Skip to content

Commit

Permalink
Fix bad rename compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
md5sha256 committed Mar 4, 2024
1 parent bf54362 commit 8d50a0d
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class DelFriendCommand extends AreashopCommandBean {
private final CommandFlag<GeneralRegion> regionFlag;

@Inject
public DelFriendCloudCommand(
public DelFriendCommand(
@Nonnull MessageBridge messageBridge,
@Nonnull IFileManager fileManager
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class DelSignCommand extends AreashopCommandBean {
private final SignManager signManager;
private final MessageBridge messageBridge;
@Inject
public DelSignCloudCommand(@Nonnull MessageBridge messageBridge, @Nonnull SignManager signManager) {
public DelSignCommand(@Nonnull MessageBridge messageBridge, @Nonnull SignManager signManager) {
this.signManager = signManager;
this.messageBridge = messageBridge;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class GroupAddCommand extends AreashopCommandBean {
private final CommandFlag<GeneralRegion> regionFlag;

@Inject
public GroupAddCloudCommand(
public GroupAddCommand(
@Nonnull MessageBridge messageBridge,
@Nonnull IFileManager fileManager,
@Nonnull RegionFactory regionFactory
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class GroupDelCommand extends AreashopCommandBean {
private final CommandFlag<GeneralRegion> regionFlag;

@Inject
public GroupDelCloudCommand(
public GroupDelCommand(
@Nonnull MessageBridge messageBridge,
@Nonnull IFileManager fileManager,
@Nonnull RegionFactory regionFactory
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class GroupInfoCommand extends AreashopCommandBean {
private final MessageBridge messageBridge;

@Inject
public GroupInfoCloudCommand(@Nonnull MessageBridge messageBridge, @Nonnull IFileManager fileManager) {
public GroupInfoCommand(@Nonnull MessageBridge messageBridge, @Nonnull IFileManager fileManager) {
this.messageBridge = messageBridge;
this.fileManager = fileManager;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class GroupListCommand extends AreashopCommandBean {
private final IFileManager fileManager;

@Inject
public GroupListCloudCommand(@Nonnull MessageBridge messageBridge, @Nonnull IFileManager fileManager) {
public GroupListCommand(@Nonnull MessageBridge messageBridge, @Nonnull IFileManager fileManager) {
this.messageBridge = messageBridge;
this.fileManager = fileManager;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class LinkSignsCommand extends AreashopCommandBean {
private final CommandFlag<String> profileFlag;

@Inject
public LinkSignsCloudCommand(
public LinkSignsCommand(
@Nonnull MessageBridge messageBridge,
@Nonnull SignLinkerManager signLinkerManager,
@Nonnull AreaShop plugin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,16 @@
import me.wiefferink.areashop.commands.AddSignCommand;
import me.wiefferink.areashop.commands.BuyCommand;
import me.wiefferink.areashop.commands.DelCommand;
import me.wiefferink.areashop.commands.DelFriendCommand;
import me.wiefferink.areashop.commands.DelSignCommand;
import me.wiefferink.areashop.commands.FindCommand;
import me.wiefferink.areashop.commands.GroupAddCommand;
import me.wiefferink.areashop.commands.GroupDelCommand;
import me.wiefferink.areashop.commands.GroupInfoCommand;
import me.wiefferink.areashop.commands.GroupListCommand;
import me.wiefferink.areashop.commands.HelpCommand;
import me.wiefferink.areashop.commands.InfoCommand;
import me.wiefferink.areashop.commands.LinkSignsCloudCommand;
import me.wiefferink.areashop.commands.LinkSignsCommand;
import me.wiefferink.areashop.commands.MeCommand;
import me.wiefferink.areashop.commands.MessageCommand;
import me.wiefferink.areashop.commands.ReloadCommand;
Expand Down Expand Up @@ -61,16 +67,16 @@ public class AreashopCommands {
AddSignCommand.class,
BuyCommand.class,
DelCommand.class,
DelFriendCloudCommand.class,
DelSignCloudCommand.class,
DelFriendCommand.class,
DelSignCommand.class,
FindCommand.class,
GroupAddCloudCommand.class,
GroupDelCloudCommand.class,
GroupInfoCloudCommand.class,
GroupListCloudCommand.class,
GroupAddCommand.class,
GroupDelCommand.class,
GroupInfoCommand.class,
GroupListCommand.class,
HelpCommand.class,
InfoCommand.class,
LinkSignsCloudCommand.class,
LinkSignsCommand.class,
MeCommand.class,
MessageCommand.class,
ReloadCommand.class,
Expand Down

0 comments on commit 8d50a0d

Please sign in to comment.