Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
tanvir10029 committed May 13, 2021
1 parent 891a7e4 commit d9f22c3
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions Expedia/src/application/Main.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
package application;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.util.Date;
import java.util.Optional;

Expand Down Expand Up @@ -707,7 +710,7 @@ public void run()

alert.setTitle("Confirmation Dialog");
alert.setHeaderText("EXIT confirmation dialog");
alert.setContentText("Are you sure you want to exit this Socket Server Program?");
alert.setContentText("Are you sure you want to exit this program");

Optional<ButtonType> result = alert.showAndWait();

Expand All @@ -727,9 +730,9 @@ public void run()

//Gridpane for payment
contact.add(submitButton, 1, 7, 1, 1);
contact.add(logData, 2, 8, 1, 1);
contact.add(helpButton, 3, 8, 1, 1);
contact.add(exitButton, 4, 8, 1, 1);
contact.add(logData, 0, 9, 1, 1);
contact.add(helpButton, 1, 9, 1, 1);
contact.add(exitButton, 2, 9, 1, 1);
contact.setVgap(5);

//Gridpane for Body
Expand Down

0 comments on commit d9f22c3

Please sign in to comment.