Skip to content

Commit 5f5c93e

Browse files
committedJan 16, 2025
Modified BookManager.java
2 parents 697881a + de97f5e commit 5f5c93e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎BookManager.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ public static void main(String[] args) {
4949
JOptionPane.showMessageDialog(null, "Book added successfully!");
5050
break;
5151

52+
5253
case "2": //To Remove Book
5354
String isbnToRemove = JOptionPane.showInputDialog("Enter ISBN of the Book to Remove:");
5455
boolean found = false;
@@ -66,7 +67,7 @@ public static void main(String[] args) {
6667
}
6768
break;
6869

69-
case "3": // To View All Books
70+
case "3": //To View All Books
7071
String allBooks = "Books in Library:\n";
7172
boolean hasBooks = false;
7273
for (int i = 0; i < bookCount; i++) {

0 commit comments

Comments
 (0)