Skip to content

Commit

Permalink
Merge commit '3632d6b6be369a92de00a3c2d26311e91f40434a' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
SurfaceS committed Oct 4, 2023
2 parents c113234 + 3632d6b commit 9facad7
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 @@ -96,7 +96,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>10.12.3</version>
<version>10.12.4</version>
</dependency>
</dependencies>
<configuration>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class ReviewAuthorDetailsSchema {
@SerializedName("name")
private String name;
@SerializedName("rating")
private Long rating;
private Double rating;
@SerializedName("username")
private String username;

Expand All @@ -42,7 +42,7 @@ public String getName() {
return name;
}

public Long getRating() {
public Double getRating() {
return rating;
}

Expand All @@ -58,7 +58,7 @@ public void setName(String value) {
this.name = value;
}

public void setRating(Long value) {
public void setRating(Double value) {
this.rating = value;
}

Expand Down

0 comments on commit 9facad7

Please sign in to comment.