We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d176434 commit 4a6b3a8Copy full SHA for 4a6b3a8
src/Library/FrmBooksManagement.java
@@ -249,7 +249,8 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {
249
ArrayList<Book> books = FrmBooksManagement.this.library
250
.showBookList_all();
251
int nBook = books.size();
252
- for (int i = 0; i < nBook; i++) {
+ int o_size = library.showBookList_overdue().size();
253
+ for (int i = 0; i < o_size; i++) {
254
// if(books.get(i).isRented()){continue;}
255
dtm.addRow(createBookTableRowData(library.showBookList_overdue().get(i)));
256
}
0 commit comments