javadoc fixes part 7 (ticket #1894)

This commit is contained in:
zzz
2017-01-26 21:55:04 +00:00
parent d196047382
commit b970912cc1
10 changed files with 16 additions and 16 deletions

View File

@@ -116,7 +116,7 @@ public class Certificate extends DataStructureImpl {
}
/**
* @throws IllegalArgumentException if type < 0
* @throws IllegalArgumentException if type &lt; 0
*/
public Certificate(int type, byte[] payload) {
if (type < 0)
@@ -131,7 +131,7 @@ public class Certificate extends DataStructureImpl {
}
/**
* @throws IllegalArgumentException if type < 0
* @throws IllegalArgumentException if type &lt; 0
* @throws IllegalStateException if already set
*/
public void setCertificateType(int type) {

View File

@@ -253,7 +253,7 @@ public class PrivateKeyFile {
}
/**
* @param padding null OK, must be non-null if spubkey length < 128
* @param padding null OK, must be non-null if spubkey length &lt; 128
* @throws IllegalArgumentException on mismatch of spubkey and spk types
* @since 0.9.16
*/