Skip to content
Snippets Groups Projects
Commit 58739772 authored by Martin Vogel's avatar Martin Vogel
Browse files

refactor(#664): fix doc

parent c0b50afc
No related branches found
No related tags found
1 merge request!211#664 Test JWK Generator
...@@ -34,7 +34,7 @@ import java.util.UUID; ...@@ -34,7 +34,7 @@ import java.util.UUID;
/** /**
* JWK Test Key Generator. * JWK Test Key Generator.
* <p> * <p>
* Generates public and private keys for encryption and signing with. * Generates key pairs of public and private keys for encryption and signing.
*/ */
public class JWKGenerator { public class JWKGenerator {
......
...@@ -99,7 +99,7 @@ public final class KeyWriter { ...@@ -99,7 +99,7 @@ public final class KeyWriter {
Files.write(path, content.getBytes(StandardCharsets.UTF_8)); Files.write(path, content.getBytes(StandardCharsets.UTF_8));
} catch (final IOException e) { } catch (final IOException e) {
LOGGER.error(e.getMessage(), e); LOGGER.error(e.getMessage(), e);
throw new RuntimeException(e); System.exit(0);
} }
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment