Skip to content

Commit

Permalink
Changes made according to comments on PR.[API-1315]
Browse files Browse the repository at this point in the history
  • Loading branch information
harunalpak committed Oct 14, 2022
1 parent 77fce4a commit 7a9cb25
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
7 changes: 0 additions & 7 deletions src/core/ReadResultSet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,6 @@ export interface ReadResultSet<T> {
*/
size(): number;

/**
* Returns an iterator for elements in the list.
*
* @returns the iterator for elements in the list.
*/
values(): Iterator<T>;

/**
* Returns an iterator for elements in the list.
*
Expand Down
2 changes: 1 addition & 1 deletion test/unit/ringbuffer/LazyReadResultSetTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ describe('LazyReadResultSetTest', function () {
expect(set.get(4)).to.be.undefined;
});

it('object can be iteratable', function () {
it('should be iterable', function () {
const set = new LazyReadResultSet(mockSerializationService, 4, [1, 2, 3, 4], [11, 12, 13, 14], 15);
let index = 0;
const values = [101, 102, 3, 4];
Expand Down

0 comments on commit 7a9cb25

Please sign in to comment.