Skip to content

Commit

Permalink
style: format code with Google Java Format
Browse files Browse the repository at this point in the history
This commit fixes the style issues introduced in b6a0c13 according to the output
from Google Java Format.

Details: #135
  • Loading branch information
deepsource-autofix[bot] authored Jul 9, 2024
1 parent b6a0c13 commit c0815e3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,10 @@ public String toString() {

/**
* Compares this chapter to another chapter based on the chapter number.
*
* @param o the object to be compared.
* @return a negative integer, zero, or a positive integer as this chapter is less than, equal to, or greater than the specified chapter.
* @return a negative integer, zero, or a positive integer as this chapter is less than, equal to,
* or greater than the specified chapter.
*/
@Override
public int compareTo(@NotNull Chapter o) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ public boolean removeMangaFromLibrary(int mangaId) {

/**
* Retrieves the cached list of chapters for a manga. This method does NOT find new chapters. Use
* {@link #fetchChapterList(int)} to find new chapters.
* This method also sorts the chapters by chapter number in ascending order.
* {@link #fetchChapterList(int)} to find new chapters. This method also sorts the chapters by
* chapter number in ascending order.
*
* @param mangaId the ID of the manga for which to get the chapter list
* @return the list of Chapter objects representing the chapters of the manga
Expand Down

0 comments on commit c0815e3

Please sign in to comment.