From: James Ahlborn Date: Tue, 22 Apr 2008 01:38:31 +0000 (+0000) Subject: minor javadoc fixes X-Git-Tag: rel_1_1_14~10 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=b530c3d58ab07bc7fba01680bd9ce7143fd840b3;p=jackcess.git minor javadoc fixes git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@337 f203690c-595d-4dc9-a70b-905162fa7fd2 --- diff --git a/src/java/com/healthmarketscience/jackcess/ByteUtil.java b/src/java/com/healthmarketscience/jackcess/ByteUtil.java index d27a432..0ea90ce 100644 --- a/src/java/com/healthmarketscience/jackcess/ByteUtil.java +++ b/src/java/com/healthmarketscience/jackcess/ByteUtil.java @@ -308,7 +308,7 @@ public final class ByteUtil { /** * Convert a byte array to a hexadecimal string for display - * @param buffer Buffer to display, starting at offset 0 + * @param array byte array to display, starting at offset 0 * @return The display String */ public static String toHexString(byte[] array) { diff --git a/src/java/com/healthmarketscience/jackcess/Cursor.java b/src/java/com/healthmarketscience/jackcess/Cursor.java index 09911b2..3173308 100644 --- a/src/java/com/healthmarketscience/jackcess/Cursor.java +++ b/src/java/com/healthmarketscience/jackcess/Cursor.java @@ -458,7 +458,7 @@ public abstract class Cursor implements Iterable> /** * Returns an Iterable whose iterator() method returns the result of a call - * to {@link #iterator(Collection)} + * to {@link #iterator(Collection)} * @throws IllegalStateException if an IOException is thrown by one of the * operations, the actual exception will be contained within */ diff --git a/src/java/com/healthmarketscience/jackcess/TempBufferHolder.java b/src/java/com/healthmarketscience/jackcess/TempBufferHolder.java index 9afae0b..3df1848 100644 --- a/src/java/com/healthmarketscience/jackcess/TempBufferHolder.java +++ b/src/java/com/healthmarketscience/jackcess/TempBufferHolder.java @@ -113,7 +113,7 @@ public abstract class TempBufferHolder { } /** - * @returns the currently referenced buffer, {@code null} if none + * @return the currently referenced buffer, {@code null} if none */ public abstract ByteBuffer getExistingBuffer();