Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wiikviz committed Nov 24, 2015
1 parent eaa452a commit 841b8c3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ public PostStatus post(PostData postData) {
return response.getStatus();
}

@Override
public CommentsResponse getComments(CommentsQuery query) {
MultiValueMap<String, Object> data = new LinkedMultiValueMap<String, Object>();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@ public Builder offset(int offset) {
return this;
}

/**
* @param count number of comments to return (maximum 100)
* @return {@link org.springframework.social.vkontakte.api.impl.wall.CommentsQuery.Builder}
*/
public Builder count(int count) {
this.count = count;
return this;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
package org.springframework.social.vkontakte.api.vkenums;

/**
* https://vk.com/dev/wall.getComments sort
*
* Defines sort order for wall.getComments operation
*/
public enum SortOrder {
asc,
Expand Down

0 comments on commit 841b8c3

Please sign in to comment.