Skip to content

Commit

Permalink
Merge pull request #10 from aaronhunter1088/namedApiResourceListUpdate
Browse files Browse the repository at this point in the history
Named api resource list update
  • Loading branch information
SirSkaro authored Jul 3, 2024
2 parents a49f52c + 9481a09 commit d6d372b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>
<groupId>skaro.pokeapi</groupId>
<artifactId>pokeapi-reactor</artifactId>
<version>1.0.6</version>
<version>1.0.7</version>
<name>pokeapi-reactor</name>
<description>Non-blocking, reactive API client for PokeAPI</description>
<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class NamedApiResourceList<T extends PokeApiResource> implements PokeApiR

private Integer count;
private String next;
private Boolean previous;
private String previous;
private List<NamedApiResource<T>> results;

public Integer getCount() {
Expand All @@ -23,10 +23,10 @@ public String getNext() {
public void setNext(String next) {
this.next = next;
}
public Boolean getPrevious() {
public String getPrevious() {
return previous;
}
public void setPrevious(Boolean previous) {
public void setPrevious(String previous) {
this.previous = previous;
}
public List<NamedApiResource<T>> getResults() {
Expand Down

0 comments on commit d6d372b

Please sign in to comment.