Skip to content
This repository has been archived by the owner on Jan 7, 2023. It is now read-only.

Commit

Permalink
Merge pull request #81 from CSC207-2022F-UofT/javadoc-fix
Browse files Browse the repository at this point in the history
Fix accidental bad javadoc
  • Loading branch information
6167656e74323431 authored Dec 4, 2022
2 parents 9d61484 + dc58f48 commit c23bf85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
8 changes: 2 additions & 6 deletions src/main/java/com/mg105/use_cases/ReplayGenerator.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,11 @@
public class ReplayGenerator {
private final @NotNull GameState state;

// No need for constructor as we would not initialize an instance for ReplayGenerator

/**
* let a new BattleCharacter that inherit all the previous player's attributes
* Create a new replaygenerator
*
* @param battleCharacter the battleCharacter in the previous game
* @return a new BattleCharacter that inherit all the previous player's attributes
* @param state the game state.
*/

public ReplayGenerator(GameState state) {
this.state = state;
}
Expand Down
1 change: 0 additions & 1 deletion src/main/java/com/mg105/use_cases/save/Saver.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
/**
* This classes only job is to save data about the state of the game in some sort of "database"
* This class is the Facade class that uses others savers to save info about the game
* <p>
*/

public class Saver implements Save {
Expand Down

0 comments on commit c23bf85

Please sign in to comment.