Skip to content

Commit

Permalink
Fix whitespace errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mipastgt committed Sep 29, 2021
1 parent ad9f268 commit f2f70d6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/manual/desktop/HostServicesShowDocumentTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
import javafx.stage.Stage;

public class HostServicesShowDocumentTest extends Application {

private final static String testHtmlUri = new File("test.html").toURI().toString();
private final static String testTxtUri = new File("test.txt").toURI().toString();
private final static String testCsvUri = new File("test.csv").toURI().toString();
Expand All @@ -56,17 +56,17 @@ public void start(Stage primaryStage) throws Exception {
showHtmlButton.setOnAction(e -> {
this.getHostServices().showDocument(testHtmlUri);
});

Button showTxtButton = new Button("TXT");
showTxtButton.setOnAction(e -> {
this.getHostServices().showDocument(testTxtUri);
});

Button showCsvButton = new Button("CSV");
showCsvButton.setOnAction(e -> {
this.getHostServices().showDocument(testCsvUri);
});

Button passButton = new Button("Pass");
passButton.setOnAction(e -> {
Platform.exit();
Expand Down

0 comments on commit f2f70d6

Please sign in to comment.