471472473474475476477478479480481
// If we have a cursor, add it to the fetch options if (cursor != null) { if (opts == null) { opts = withCursor(cursor); } else { opts.cursor(cursor); } } return opts; }
491492493494495496497498499500501
496497498499500501502503504505506