There was an error while loading. Please reload this page.
1 parent 85bb3a0 commit 8384bf4Copy full SHA for 8384bf4
1 file changed
src/main/java/notepack/Main.java
@@ -2,6 +2,7 @@
2
3
import java.security.Security;
4
import java.util.ResourceBundle;
5
+
6
import javafx.application.Application;
7
import javafx.fxml.FXMLLoader;
8
import javafx.scene.Parent;
@@ -10,7 +11,6 @@
10
11
import javafx.stage.Stage;
12
import notepack.app.domain.Settings;
13
import notepack.app.storage.PreferencesSettings;
-import org.bouncycastle.jce.provider.BouncyCastleProvider;
14
15
public class Main extends Application {
16
@@ -30,8 +30,6 @@ public static void main(String[] args) {
30
@Override
31
public void start(Stage stage) throws Exception {
32
33
- Security.addProvider(new BouncyCastleProvider());
34
-
35
FXMLLoader loader = new FXMLLoader(getClass().getResource("MainView.fxml"));
36
loader.setResources(ResourceBundle.getBundle("notepack.fonts.FontAwesome"));
37
0 commit comments