Skip to content

Commit 86d6db6

Browse files
committed
JNI/JCE: fix Javadoc warnings about default constructors in WolfCryptUtil and Asn
1 parent c28179e commit 86d6db6

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

src/main/java/com/wolfssl/provider/jce/WolfCryptUtil.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@
5454
*/
5555
public class WolfCryptUtil {
5656

57+
/** Default WolfCryptUtil constructor. */
58+
public WolfCryptUtil() {
59+
}
60+
5761
/**
5862
* Maximum size of the keystore buffer to mark. We try to set this
5963
* high enough to handle any large keystore. Although there is no

src/main/java/com/wolfssl/wolfcrypt/Asn.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@
3030
*/
3131
public class Asn extends WolfObject {
3232

33+
/** Default Asn constructor. */
34+
public Asn() {
35+
}
36+
3337
/** Maximum encoded signature size */
3438
public static final int MAX_ENCODED_SIG_SIZE = 512;
3539

0 commit comments

Comments
 (0)