Skip to content

Commit

Permalink
Fix code quality by adding camelcase
Browse files Browse the repository at this point in the history
  • Loading branch information
JJtan2002 committed Nov 11, 2024
1 parent 5d01f95 commit 71a1e28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/logic/CommandLog.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public Command getPreviousCommand() {
/**
* Adds a user input to the stack
*/
public void addinput(String input) {
public void addInput(String input) {
inputLog.push(input);
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/model/ModelManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public Command getPreviousCommand() {

@Override
public void addInputToLog(String input) {
commandLog.addinput(input);
commandLog.addInput(input);
}

@Override
Expand Down

0 comments on commit 71a1e28

Please sign in to comment.