Skip to content

Commit

Permalink
Fix swapped javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdettman committed Nov 5, 2024
1 parent fa764c6 commit 9046647
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ public void removeExtension(
* Return if the extension indicated by OID is present.
*
* @param oid the OID for the extension of interest.
* @return the Extension, or null if it is not present.
* @return true if a matching extension is present, false otherwise.
*/
public boolean hasExtension(ASN1ObjectIdentifier oid)
{
Expand All @@ -214,7 +214,7 @@ public boolean hasExtension(ASN1ObjectIdentifier oid)
* Return the current value of the extension for OID.
*
* @param oid the OID for the extension we want to fetch.
* @return true if a matching extension is present, false otherwise.
* @return the Extension, or null if it is not present.
*/
public Extension getExtension(ASN1ObjectIdentifier oid)
{
Expand Down

0 comments on commit 9046647

Please sign in to comment.