Skip to content

Commit

Permalink
Squashed 'runtimes/' changes from 82bdc8b..6cdb496
Browse files Browse the repository at this point in the history
6cdb496 Merge pull request #12 from Azure/javavnext
90d7f8b Merge pull request #11 from Azure/revert-10-revert-9-pagedListFix
18066d8 Revert "Revert "Fixing UnsupportedOperation exception in PagedList""
6e44a66 Merge pull request #10 from Azure/revert-9-pagedListFix
8b7b17a Revert "Fixing UnsupportedOperation exception in PagedList"
2e67caa Merge pull request #9 from anuchandy/pagedListFix
c3f7a46 Fixing UnsupportedOperation exception in PagedList

git-subtree-dir: runtimes
git-subtree-split: 6cdb496
  • Loading branch information
jianghaolu committed May 5, 2016
1 parent 320b582 commit aa6450a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ public PagedList() {
* @param page the {@link Page} object.
*/
public PagedList(Page<E> page) {
items = page.getItems();
this();
items.addAll(page.getItems());
nextPageLink = page.getNextPageLink();
currentPage = page;
}
Expand Down

0 comments on commit aa6450a

Please sign in to comment.