]> source.dussan.org Git - jackcess.git/commitdiff
minor javadoc fixes
authorJames Ahlborn <jtahlborn@yahoo.com>
Tue, 22 Apr 2008 01:38:31 +0000 (01:38 +0000)
committerJames Ahlborn <jtahlborn@yahoo.com>
Tue, 22 Apr 2008 01:38:31 +0000 (01:38 +0000)
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@337 f203690c-595d-4dc9-a70b-905162fa7fd2

src/java/com/healthmarketscience/jackcess/ByteUtil.java
src/java/com/healthmarketscience/jackcess/Cursor.java
src/java/com/healthmarketscience/jackcess/TempBufferHolder.java

index d27a4322e93032e93f323bb6d9174c32593cd166..0ea90ce96e253dfd01d24ff7c5064997404e4082 100644 (file)
@@ -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) {
index 09911b28cbe00bd3526dd32aa4ccf2a384838b76..317330877247b445e84c4c4db58ff4fe4c298d48 100644 (file)
@@ -458,7 +458,7 @@ public abstract class Cursor implements Iterable<Map<String, Object>>
   
   /**
    * Returns an Iterable whose iterator() method returns the result of a call
-   * to {@link #iterator(Collection<String>)}
+   * to {@link #iterator(Collection)}
    * @throws IllegalStateException if an IOException is thrown by one of the
    *         operations, the actual exception will be contained within
    */
index 9afae0bedd89974c5bf2c1c42d9a953298dd1194..3df18484e34e3e60be2ddcaead6751f4309cab04 100644 (file)
@@ -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();