Fix 186097: ProofOfPossession.encode() has paranoid assertion.

This commit is contained in:
nicolson%netscape.com 2002-12-19 02:31:38 +00:00
Родитель b5e025dea3
Коммит 76ceb77be4
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -196,7 +196,7 @@ public class ProofOfPossession implements ASN1Value {
public void encode(Tag implicitTag, OutputStream ostream)
throws IOException {
Assert.notReached("A CHOICE cannot be implicitly tagged");
Assert._assert(implicitTag.equals(getTag()));
encode(ostream);
}