diff --git a/src/main/java/com/arangodb/springframework/annotation/QueryOptions.java b/src/main/java/com/arangodb/springframework/annotation/QueryOptions.java index c2373fb7..30c891e7 100644 --- a/src/main/java/com/arangodb/springframework/annotation/QueryOptions.java +++ b/src/main/java/com/arangodb/springframework/annotation/QueryOptions.java @@ -144,16 +144,13 @@ /** * Set this option to true to make it possible to retry fetching the latest batch from a cursor. - *
* This makes possible to safely retry invoking {@link com.arangodb.ArangoCursor#next()} in * case of I/O exceptions (which are actually thrown as {@link com.arangodb.ArangoDBException} * with cause {@link java.io.IOException}) - * * If set to false (default), then it is not safe to retry invoking * {@link com.arangodb.ArangoCursor#next()} in case of I/O exceptions, since the request to * fetch the next batch is not idempotent (i.e. the cursor may advance multiple times on the * server). - * * Note: once you successfully received the last batch, you should call * {@link com.arangodb.ArangoCursor#close()} so that the server does not unnecessary keep the * batch until the cursor times out ({@link AqlQueryOptions#ttl(Integer)}).