Skip to content

Commit

Permalink
Text Area 4
Browse files Browse the repository at this point in the history
Hidden text area that provides the same client info but without the RCEV and RLENS
  • Loading branch information
whernandez23 committed May 4, 2021
1 parent 1edee1c commit a251839
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Expedia/src/application/expediaServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ public class expediaServer extends Application
public static TextArea textArea_2;
public static VBox gridPane_3;
public static TextArea textArea_3 = new TextArea();
public static TextArea textArea_4 = new TextArea();
public static TextArea ta = new TextArea();
TextArea clock;

Expand Down Expand Up @@ -178,7 +179,7 @@ public void run()
alert.setHeaderText("Transaction History");
alert.setResizable(true);

alert.setContentText(textArea_3.getText());
alert.setContentText(textArea_4.getText());

alert.showAndWait();
}
Expand Down

0 comments on commit a251839

Please sign in to comment.