Revision: 11787
http://sourceforge.net/p/foray/code/11787
Author: victormote
Date: 2021-01-14 12:32:33 +0000 (Thu, 14 Jan 2021)
Log Message:
-----------
Fix minor javadoc problems.
Modified Paths:
--------------
trunk/foray/foray-common/src/main/java/org/foray/common/data/ByteArray.java
Modified: trunk/foray/foray-common/src/main/java/org/foray/common/data/ByteArray.java
===================================================================
--- trunk/foray/foray-common/src/main/java/org/foray/common/data/ByteArray.java 2021-01-14 11:35:36 UTC (rev 11786)
+++ trunk/foray/foray-common/src/main/java/org/foray/common/data/ByteArray.java 2021-01-14 12:32:33 UTC (rev 11787)
@@ -140,9 +140,9 @@
* Creates a ByteArray instance from a character sequence in which each character is expected to be the ASCII
* representation of a hexadecimal digit, i.e. in the range 0-9, A-F, or a-f.
* @param charSequence The char sequence to be converted into a byte array. This must have an even length.
- * @return If {@link charSequence} is null, returns null.
+ * @return If {@code charSequence} is null, returns null.
* In all other cases, returns a new byte array.
- * @throws IllegalArgumentException If {@link charSequence} does not contain an even number of characters.
+ * @throws IllegalArgumentException If {@code charSequence} does not contain an even number of characters.
*/
public static ByteArray fromHexCharSequence(final CharSequence charSequence) {
if (charSequence == null) {
@@ -168,9 +168,9 @@
* Creates a ByteArray instance from a byte sequence in which each byte is expected to be the ASCII
* representation of a hexadecimal digit, i.e. in the range 0-9, A-F, or a-f.
* @param byteSequence The byte sequence to be converted into a byte array. This must have an even length.
- * @return If {@link byteSequence} is null, returns null.
+ * @return If {@code byteSequence} is null, returns null.
* In all other cases, returns a new byte array.
- * @throws IllegalArgumentException If {@link byteSequence} does not contain an even number of characters.
+ * @throws IllegalArgumentException If {@code byteSequence} does not contain an even number of characters.
*/
public static ByteArray fromHexByteSequence(final ByteSequence byteSequence) {
if (byteSequence == null) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|