Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
l3r8yJ committed Jan 14, 2023
1 parent b230235 commit d91f19e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/main/java/com/l3r8yj/elegramapi/command/Command.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ public interface Command {
/**
* Handler for update.
*
* @param upd The update
* @param defaultBot
* @param upd The update
* @param bot The bot for interacting with updates
*/
void onUpdate(Update upd, Bot defaultBot);
void onUpdate(Update upd, Bot bot);
}
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
public final class DefaultCommand implements Command {

@Override
public void onUpdate(final Update upd, final Bot defaultBot) {
public void onUpdate(final Update upd, final Bot bot) {
throw new UnsupportedOperationException("Not implemented!");
}
}

7 comments on commit d91f19e

@0pdd
Copy link
Collaborator

@0pdd 0pdd commented on d91f19e Jan 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 53-fde8e0d2 disappeared from src/main/java/com/l3r8yj/elegramapi/update/Update.java), that's why I closed #55. Please, remember that the puzzle was not necessarily removed in this particular commit. Maybe it happened earlier, but we discovered this fact only now.

@0pdd
Copy link
Collaborator

@0pdd 0pdd commented on d91f19e Jan 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 53-7efc8f97 disappeared from src/main/java/com/l3r8yj/elegramapi/bot/UpdatedBot.java), that's why I closed #56. Please, remember that the puzzle was not necessarily removed in this particular commit. Maybe it happened earlier, but we discovered this fact only now.

@0pdd
Copy link
Collaborator

@0pdd 0pdd commented on d91f19e Jan 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 60-b481fc5e discovered in src/main/java/com/l3r8yj/elegramapi/update/DefaultUpdate.java) and submitted as #68. Please, remember that the puzzle was not necessarily added in this particular commit. Maybe it was added earlier, but we discovered it only now.

@0pdd
Copy link
Collaborator

@0pdd 0pdd commented on d91f19e Jan 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 60-15677383 discovered in src/main/java/com/l3r8yj/elegramapi/update/Update.java) and submitted as #69. Please, remember that the puzzle was not necessarily added in this particular commit. Maybe it was added earlier, but we discovered it only now.

@0pdd
Copy link
Collaborator

@0pdd 0pdd commented on d91f19e Jan 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 60-7d61ce0e discovered in src/main/java/com/l3r8yj/elegramapi/bot/DefaultBot.java) and submitted as #70. Please, remember that the puzzle was not necessarily added in this particular commit. Maybe it was added earlier, but we discovered it only now.

@0pdd
Copy link
Collaborator

@0pdd 0pdd commented on d91f19e Jan 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 60-10c141ee discovered in src/main/java/com/l3r8yj/elegramapi/bot/DefaultBot.java) and submitted as #71. Please, remember that the puzzle was not necessarily added in this particular commit. Maybe it was added earlier, but we discovered it only now.

@0pdd
Copy link
Collaborator

@0pdd 0pdd commented on d91f19e Jan 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 60-37d07b17 discovered in src/main/java/com/l3r8yj/elegramapi/message/Message.java) and submitted as #72. Please, remember that the puzzle was not necessarily added in this particular commit. Maybe it was added earlier, but we discovered it only now.

Please sign in to comment.