Skip to content

Commit

Permalink
Checkstyle fixes - wrong order of variable definition
Browse files Browse the repository at this point in the history
  • Loading branch information
yeozongyao committed Apr 1, 2024
1 parent 134e577 commit b14c200
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/main/java/seedu/bookbuddy/BookDetails.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@
import java.util.List;

public class BookDetails {

protected String summary;
protected static List<String> availableGenres = new ArrayList<>(Arrays.asList("Fiction", "Non-Fiction",
"Mystery", "Science Fiction", "Fantasy"));


protected String summary;
/**
* Sets the summary of the book at the specified index.
*
Expand Down

0 comments on commit b14c200

Please sign in to comment.