Skip to content

Commit 4b6ed7d

Browse files
fix: remove broken extends
1 parent 50c400a commit 4b6ed7d

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

PistonChat/src/main/java/net/pistonmaster/pistonchat/commands/whisper/LastCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import java.util.Optional;
1414

1515
@RequiredArgsConstructor
16-
public class LastCommand extends MessageCommandHelper implements CommandExecutor, TabExecutor {
16+
public class LastCommand implements CommandExecutor, TabExecutor {
1717
private final PistonChat plugin;
1818

1919
@Override

PistonChat/src/main/java/net/pistonmaster/pistonchat/commands/whisper/ReplyCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import java.util.Optional;
1414

1515
@RequiredArgsConstructor
16-
public class ReplyCommand extends MessageCommandHelper implements CommandExecutor, TabExecutor {
16+
public class ReplyCommand implements CommandExecutor, TabExecutor {
1717
private final PistonChat plugin;
1818

1919
@Override

PistonChat/src/main/java/net/pistonmaster/pistonchat/commands/whisper/WhisperCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import java.util.Optional;
1616

1717
@RequiredArgsConstructor
18-
public class WhisperCommand extends MessageCommandHelper implements CommandExecutor, TabExecutor {
18+
public class WhisperCommand implements CommandExecutor, TabExecutor {
1919
private final PistonChat plugin;
2020

2121
@Override

0 commit comments

Comments
 (0)