Skip to content

Commit

Permalink
Checkstyle fixes - line longer than 120 characters
Browse files Browse the repository at this point in the history
  • Loading branch information
yeozongyao committed Apr 9, 2024
1 parent 2601b0e commit 6c0edaa
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ static void parseSetGenre(BookList books, String[] inputArray) throws IOExceptio
}

if (index <= 0 || index > books.getSize()) {
throw new InvalidCommandArgumentException("Invalid book index. Please enter a valid index. Type 'list' to view the " +
"list of books.");
throw new InvalidCommandArgumentException("Invalid book index. Please enter a valid " +
"index. Type 'list' to view the list of books.");
}

if (parts.length > 1 && !parts[1].isEmpty()) {
Expand Down

0 comments on commit 6c0edaa

Please sign in to comment.