Commit 4c95ef10 authored by Tim Olshansky's avatar Tim Olshansky Committed by GitHub

Merge pull request #160 from jclaudiocf/hotfix/message-field-commit

Changed field deprecated
parents e42d54df 5eb8ef6b
...@@ -11,7 +11,7 @@ public class GitlabCommit { ...@@ -11,7 +11,7 @@ public class GitlabCommit {
private String id; private String id;
private String title; private String title;
private String description; private String message;
@JsonProperty("short_id") @JsonProperty("short_id")
private String shortId; private String shortId;
...@@ -58,12 +58,12 @@ public class GitlabCommit { ...@@ -58,12 +58,12 @@ public class GitlabCommit {
this.title = title; this.title = title;
} }
public String getDescription() { public String getMessage() {
return description; return message;
} }
public void setDescription(String description) { public void setMessage(String message) {
this.description = description; this.message = message;
} }
public String getAuthorName() { public String getAuthorName() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment