Ignore:
Timestamp:
03/28/13 11:17:03 (11 years ago)
Author:
akislev
Message:

one-off bug is fixed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • CQIClient/src/main/java/eu/clarin/cqi/client/CqiResult.java

    r2178 r2761  
    7676     *
    7777     * @return {@code true} if the cursor is moved to a position in this
    78      * {@code MatchSet} object;
    79      * {@code false} if the cursor is before the first match or after the last
    80      * match
     78     * {@code MatchSet} object; {@code false} if the cursor is before the first
     79     * match or after the last match
    8180     * @exception CqiClientException
    8281     */
     
    9089
    9190    /**
    92      * Moves the cursor froward one row from its current position. A {@code CqiResult}
    93      * cursor is initially positioned before the first match; the first call to
    94      * the method
    95      * {@code next} makes the first match the current match.
    96      *
    97      * @return {@code true} if the new current row is valid;
    98      * {@code false} if there are no more matches
     91     * Moves the cursor froward one row from its current position. A
     92     * {@code CqiResult} cursor is initially positioned before the first match;
     93     * the first call to the method {@code next} makes the first match the
     94     * current match.
     95     *
     96     * @return {@code true} if the new current row is valid; {@code false} if
     97     * there are no more matches
    9998     * @exception CqiClientException
    10099     */
     
    112111            final int bufferedEnd = (bufferedStart + BUFFER_SIZE > resultSize) ? resultSize - 1 : bufferedStart + BUFFER_SIZE - 1;
    113112            bufferedSize = bufferedEnd - bufferedStart + 1;
    114             bufferIndex = 0;
     113            bufferIndex = -1;
    115114            client.dumpSubCorpus(subCorpusName, CqiClient.CQI_CONST_FIELD_MATCH, bufferedStart, bufferedEnd, results[MATCH_START]);
    116115            client.dumpSubCorpus(subCorpusName, CqiClient.CQI_CONST_FIELD_MATCHEND, bufferedStart, bufferedEnd, results[MATCH_END]);
Note: See TracChangeset for help on using the changeset viewer.