Skip to content

Commit

Permalink
Remove the exception from the start method in the PWAApp class
Browse files Browse the repository at this point in the history
  • Loading branch information
besidev committed Aug 17, 2023
1 parent f537dbd commit c6862ea
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pwa/src/main/java/com/jpro/samples/pwa/PWAApp.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.jpro.samples.pwa;

import com.jpro.webapi.WebAPI;
import fr.brouillard.oss.cssfx.CSSFX;
import javafx.application.Application;
import javafx.scene.Scene;
Expand All @@ -13,7 +12,7 @@
public class PWAApp extends Application {

@Override
public void start(Stage primaryStage) throws Exception {
public void start(Stage primaryStage) {
CSSFX.start();
PWAUtil pwa = new PWAUtil(primaryStage);
VBox pin = new VBox();
Expand Down

0 comments on commit c6862ea

Please sign in to comment.