Skip to content

Commit

Permalink
Update Main.java
Browse files Browse the repository at this point in the history
  • Loading branch information
alberinalatifaj authored May 13, 2021
1 parent a21244f commit 4b5735a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Expedia/src/application/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public void start(Stage primaryStage)

//DepartTimes
GridPane right = new GridPane();
Label lb1 = new Label("Depart Times: "
Label lb1 = new Label("Depart Times and Price: "
+ " ");
right.setMinWidth(200);
right.setMaxWidth(200);
Expand Down Expand Up @@ -131,9 +131,9 @@ public void start(Stage primaryStage)
{
String strSTA = startLocTF.getValue();
String strEND = endLocTF.getValue();
times1.setText("11:30 AM\n");
times2.setText("12:20 PM\n");
times3.setText("1:15 PM");
times1.setText("11:30 AM - $150\n");
times2.setText("12:20 PM - $230\n");
times3.setText("1:15 PM - $275");

//fileIO locLog = new fileIO();
//locLog.writeToFile(strSTA, strEND);
Expand Down

0 comments on commit 4b5735a

Please sign in to comment.