Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pdfbox/src/main/java/org/apache/pdfbox/cos/COSName.java
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ public final class COSName extends COSBase implements Comparable<COSName>
* encoding is a transparent identity transform for those cases.</p>
*
* @param aName the name string; must not be {@code null}
* @return a canonicalised {@code COSName} instance
* @return a canonized {@code COSName} instance
*/
public static COSName getPDFName(String aName)
{
Expand All @@ -709,7 +709,7 @@ public static COSName getPDFName(String aName)
* name even when the bytes are not valid UTF-8.</p>
*
* @param bytes the raw decoded byte sequence; must not be {@code null}
* @return a canonicalised {@code COSName} instance
* @return a canonized {@code COSName} instance
*/
public static COSName getPDFName(byte[] bytes)
{
Expand Down