Skip to content

Commit

Permalink
removed bouncycastle
Browse files Browse the repository at this point in the history
  • Loading branch information
lgajos committed Nov 12, 2020
1 parent 85bb3a0 commit 8384bf4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/main/java/notepack/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import java.security.Security;
import java.util.ResourceBundle;

import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
Expand All @@ -10,7 +11,6 @@
import javafx.stage.Stage;
import notepack.app.domain.Settings;
import notepack.app.storage.PreferencesSettings;
import org.bouncycastle.jce.provider.BouncyCastleProvider;

public class Main extends Application {

Expand All @@ -30,8 +30,6 @@ public static void main(String[] args) {
@Override
public void start(Stage stage) throws Exception {

Security.addProvider(new BouncyCastleProvider());

FXMLLoader loader = new FXMLLoader(getClass().getResource("MainView.fxml"));
loader.setResources(ResourceBundle.getBundle("notepack.fonts.FontAwesome"));

Expand Down

0 comments on commit 8384bf4

Please sign in to comment.