Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions GameLauncher.java
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ protected void run() {
System.out.println("Goodbye!");
} else if (choice > 0 && choice <= this.games.size()) {
Game game = this.games.get(choice - 1);
System.out.println("\n=== Now Playing: " + game.getName().toUpperCase() + " ===");
Copy link

Copilot AI Nov 1, 2025

Choose a reason for hiding this comment

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

The indentation uses tabs while the surrounding code uses spaces. This line should use consistent indentation with spaces to match the rest of the file (appears to be 20 spaces based on surrounding lines).

Suggested change
System.out.println("\n=== Now Playing: " + game.getName().toUpperCase() + " ===");
System.out.println("\n=== Now Playing: " + game.getName().toUpperCase() + " ===");

Copilot uses AI. Check for mistakes.
Optional<Integer> score = game.play();
this.historyTracker.recordPlay(game.getName(),
score.orElse(null));
Expand Down
1 change: 1 addition & 0 deletions README.md
Copy link
Contributor

Choose a reason for hiding this comment

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

This PR seems to introduce some unintended artifacts into the README.md. Specifically, the line 'test-delete this' looks like temporary development text. Please clean up all non-essential or temporary content.

Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Console Game Hub
test-delete this
Copy link

Copilot AI Nov 1, 2025

Choose a reason for hiding this comment

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

This line appears to be a test placeholder that should be removed before merging. It does not belong in the project documentation.

Suggested change
test-delete this

Copilot uses AI. Check for mistakes.

Repository for explorations of software development

Expand Down