Skip to content

Commit

Permalink
Patched SystemInfo model.
Browse files Browse the repository at this point in the history
  • Loading branch information
arazabishov committed Mar 14, 2017
1 parent 11b5cca commit 38cc276
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public final class SystemInfo {
String lastAnalyticsTableSuccess;

@JsonProperty("revision")
int revision;
String revision;

@JsonProperty("version")
String version;
Expand Down Expand Up @@ -94,12 +94,12 @@ public void setLastAnalyticsTableSuccess(String lastAnalyticsTableSuccess) {
}

@JsonIgnore
public int getRevision() {
public String getRevision() {
return revision;
}

@JsonIgnore
public void setRevision(int revision) {
public void setRevision(String revision) {
this.revision = revision;
}

Expand Down

0 comments on commit 38cc276

Please sign in to comment.